X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.gitlab-ci.yml;h=1c5a83eb9c3fce4bb4d085593a6128aa30b7c99e;hb=ee7bacc9ec2d701138586fe2b363702c4f46deee;hp=13004d5f0bb7a24f76b44ccddbb7b25c1187d10a;hpb=f373d87ba7ca7b2011fe26ea81544daebfdf66fb;p=open-adventure.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13004d5..1c5a83e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,32 +1,46 @@ -image: alpine +image: fedora stages: - build - test + - deploy # build advent itself -binary: +binary:debug: stage: build before_script: - - apk update - - apk add make gcc musl-dev - script: - - make advent + - dnf install make gcc libedit-devel libasan libubsan python2 PyYAML lcov -y + script: + - make debug artifacts: paths: - advent - # cache outputs to reduce the build time - cache: + - cheat + - "*.o" + - dungeon.c + - dungeon.h + - "*.gcno" + +binary:release: + stage: build + before_script: + - dnf install make gcc libedit-devel python2 PyYAML -y + script: + - make advent cheat + artifacts: paths: + - advent + - cheat - "*.o" + - dungeon.c + - dungeon.h manpage: stage: build before_script: - - apk update - - apk add make asciidoc + - dnf install make asciidoc -y script: - - make .asc.6 + - make advent.6 artifacts: paths: - advent.6 @@ -34,20 +48,61 @@ manpage: html: stage: build before_script: - - apk update - - apk add make asciidoc libxslt + - dnf install make asciidoc libxslt -y script: - - make .asc.html + - make html artifacts: paths: - - advent.html + - "*.html" + +dist: + stage: build + before_script: + - dnf install make asciidoc -y + 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: + - dnf install make gcc libedit-devel libasan libubsan python2 PyYAML lcov -y + script: + - 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 + +test:release: stage: test before_script: - - apk update - - apk add make + - dnf install make libedit -y script: - cd tests - make + - cd .. + dependencies: + - binary:release + +pages: + stage: deploy + script: + - mkdir public + - mv coverage public + artifacts: + paths: + - public + only: + - master + dependencies: + - test:debug