X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=.gitlab-ci.yml;h=8118dd2d1fec67cb2554b9d5f810bf65fde0496d;hp=34e16e889640d196c08a3efa116f9a944c5ef30a;hb=2ddd09189336df222ef88099a3041584ec5b327e;hpb=0692b8a6efb35cdbf48315f88535d071331c2b1d diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34e16e8..8118dd2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: alpine +image: opensuse:tumbleweed stages: - build @@ -9,40 +9,35 @@ stages: binary:debug: stage: build before_script: - - apk update - - apk add make gcc musl-dev - script: + - zypper install -y make gcc libedit-devel libasan5 libubsan1 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 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,27 +47,31 @@ manpage: html: stage: build before_script: - - apk update - - apk add make asciidoc libxslt + - zypper install -y make asciidoc libxslt script: - make html artifacts: paths: - "*.html" +dist: + stage: build + before_script: + - zypper install -y make asciidoc tar + script: + - export VERS=${CI_COMMIT_REF_NAME} + - make dist -e + artifacts: + paths: + - "*.tar.gz" + # run tests using the binary built before 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 libasan5 libubsan1 python python2-PyYAML lcov script: - - cd tests - - make - - cd .. - - lcov -t "advent" -o advent.info -c -d . - - genhtml -o coverage advent.info + - make coverage artifacts: paths: - coverage @@ -82,8 +81,7 @@ test:debug: test:release: stage: test before_script: - - apk update - - apk add make + - zypper install -y make libedit script: - cd tests - make @@ -96,25 +94,10 @@ pages: script: - mkdir public - mv coverage public - - "mv *.html public" artifacts: paths: - public only: - master dependencies: - - html - test:debug - -package: - stage: deploy - artifacts: - paths: - - advent - - NEWS - - COPYING - - README - - advent.6 - dependencies: - - binary:release - - manpage