X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=.gitlab-ci.yml;h=984111df8031110b3a9131c7c5c1e58bcf5394de;hp=ea8b0482f582a6b6a21215826d3335312119c633;hb=a680514d5f86d02df81f0735d46908c3cfcb392f;hpb=06368fe0914fe813b5baada73231f19d40b63bac diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea8b048..984111d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: alpine +image: opensuse:tumbleweed stages: - build @@ -9,40 +9,36 @@ stages: binary:debug: stage: build before_script: - - apk update - - apk add make gcc musl-dev - script: + - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov + script: - make debug artifacts: paths: - advent - - "*.gcda" - - "*.gcno" - # cache outputs to reduce the build time - cache: - paths: + - cheat - "*.o" + - dungeon.c + - dungeon.h + - "*.gcno" binary:release: stage: build before_script: - - apk update - - apk add make gcc musl-dev - script: - - make advent + - zypper install -y make gcc libedit-devel python python2-PyYAML + script: + - make advent cheat artifacts: paths: - advent - # cache outputs to reduce the build time - cache: - paths: + - cheat - "*.o" + - dungeon.c + - dungeon.h manpage: stage: build before_script: - - apk update - - apk add make asciidoc + - zypper install -y make asciidoc script: - make advent.6 artifacts: @@ -52,8 +48,7 @@ manpage: html: stage: build before_script: - - apk update - - apk add make asciidoc libxslt + - zypper install -y make asciidoc libxslt script: - make html artifacts: @@ -63,8 +58,7 @@ html: dist: stage: build before_script: - - apk update - - apk add make asciidoc + - zypper install -y make asciidoc tar script: - export VERS=${CI_COMMIT_REF_NAME} - make dist -e @@ -76,26 +70,23 @@ dist: test:debug: stage: test before_script: - - apk update - - apk add make gcc - - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted + - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov script: - - cd tests - - make - - cd .. + - make debug + - make check - lcov -t "advent" -o advent.info -c -d . - genhtml -o coverage advent.info + - cd tests + - ./coverage_dungeon.py + - cd .. artifacts: paths: - coverage - dependencies: - - binary:debug test:release: stage: test before_script: - - apk update - - apk add make + - zypper install -y make libedit script: - cd tests - make @@ -106,6 +97,7 @@ test:release: pages: stage: deploy script: + - mkdir public - mv coverage public artifacts: paths: @@ -114,4 +106,3 @@ pages: - master dependencies: - test:debug -