X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.gitlab-ci.yml;h=c179851865000ddc8cc5a83d63d84e458623dd1e;hb=720146740b72ec26712d61a88a8384ecdfe29a2a;hp=1dcb6c1867340ff7762e95a3c8a358093f28b64a;hpb=900f8d9df50daba2f678c43f9c85ca8e19900090;p=open-adventure.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1dcb6c1..c179851 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,13 +6,13 @@ stages: - deploy # build advent itself -binary: +binary:debug: stage: build before_script: - apk update - apk add make gcc musl-dev script: - - make advent + - make debug artifacts: paths: - advent @@ -23,13 +23,28 @@ binary: paths: - "*.o" +binary:release: + stage: build + before_script: + - apk update + - apk add make gcc musl-dev + script: + - make advent + artifacts: + paths: + - advent + # cache outputs to reduce the build time + cache: + paths: + - "*.o" + manpage: stage: build before_script: - apk update - apk add make asciidoc script: - - make .asc.6 + - make advent.6 artifacts: paths: - advent.6 @@ -40,13 +55,13 @@ html: - apk update - apk add make asciidoc libxslt script: - - make .asc.html + - make html artifacts: paths: - - advent.html + - "*.html" # run tests using the binary built before -test: +test:debug: stage: test before_script: - apk update @@ -61,13 +76,47 @@ test: artifacts: paths: - coverage + dependencies: + - binary:debug + +test:release: + stage: test + before_script: + - apk update + - apk add make + script: + - cd tests + - make + - cd .. + dependencies: + - binary:release pages: stage: deploy script: + - mkdir public - mv coverage public + - "mv *.html public" artifacts: paths: - public only: - master + dependencies: + - html + - test:debug + +package: + stage: deploy + script: + - cp README.adoc README + artifacts: + paths: + - advent + - NEWS + - COPYING + - README + - advent.6 + dependencies: + - binary:release + - manpage