X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.gitlab-ci.yml;h=701db5bb0b87ecfd35d5730e941f1f453596ac97;hb=90d9ffd85d6a621d4a52bd214369fec4d7b9fa7e;hp=984111df8031110b3a9131c7c5c1e58bcf5394de;hpb=a680514d5f86d02df81f0735d46908c3cfcb392f;p=open-adventure.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 984111d..701db5b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: opensuse:tumbleweed +image: opensuse/tumbleweed stages: - build @@ -9,7 +9,7 @@ stages: binary:debug: stage: build before_script: - - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov + - zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov script: - make debug artifacts: @@ -19,7 +19,6 @@ binary:debug: - "*.o" - dungeon.c - dungeon.h - - "*.gcno" binary:release: stage: build @@ -58,7 +57,7 @@ html: dist: stage: build before_script: - - zypper install -y make asciidoc tar + - zypper install -y make asciidoc tar gzip script: - export VERS=${CI_COMMIT_REF_NAME} - make dist -e @@ -70,18 +69,14 @@ dist: test:debug: stage: test before_script: - - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov + - zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov script: - - make debug - - make check - - lcov -t "advent" -o advent.info -c -d . - - genhtml -o coverage advent.info - - cd tests - - ./coverage_dungeon.py - - cd .. + - make coverage artifacts: paths: - coverage + dependencies: + - binary:debug test:release: stage: test