X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=.gitlab-ci.yml;h=701db5bb0b87ecfd35d5730e941f1f453596ac97;hp=13ad35d040fb2e7e60de55523ff1cb09ff00fd9d;hb=b909cc695fdb0e535f640925e0c290714656aa8b;hpb=5c8276e2cbd438c16948621188ddee4cc92a13d5 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13ad35d..701db5b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,22 +1,103 @@ -image: gcc +image: opensuse/tumbleweed -# build using Makefile -build: +stages: + - build + - test + - deploy + +# build advent itself +binary:debug: stage: build - before_script: - - apt update && apt -y install make - script: - - make advent + before_script: + - zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov + script: + - make debug artifacts: paths: - advent - # cache outputs to reduce the build time - cache: + - cheat + - "*.o" + - dungeon.c + - dungeon.h + +binary:release: + stage: build + before_script: + - zypper install -y make gcc libedit-devel python python2-PyYAML + script: + - make advent cheat + artifacts: paths: + - advent + - cheat - "*.o" + - dungeon.c + - dungeon.h + +manpage: + stage: build + before_script: + - zypper install -y make asciidoc + script: + - make advent.6 + artifacts: + paths: + - advent.6 + +html: + stage: build + before_script: + - zypper install -y make asciidoc libxslt + script: + - make html + artifacts: + paths: + - "*.html" + +dist: + stage: build + before_script: + - zypper install -y make asciidoc tar gzip + script: + - export VERS=${CI_COMMIT_REF_NAME} + - make dist -e + artifacts: + paths: + - "*.tar.gz" # run tests using the binary built before -test: +test:debug: + stage: test + before_script: + - zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov + script: + - make coverage + artifacts: + paths: + - coverage + dependencies: + - binary:debug + +test:release: stage: test + before_script: + - zypper install -y make libedit script: - - make check + - cd tests + - make + - cd .. + dependencies: + - binary:release + +pages: + stage: deploy + script: + - mkdir public + - mv coverage public + artifacts: + paths: + - public + only: + - master + dependencies: + - test:debug