X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=.gitlab-ci.yml;h=20e466b958fca76dcbd8515397b5246bfcb539cc;hp=13ad35d040fb2e7e60de55523ff1cb09ff00fd9d;hb=a4de450bfaf2c600dccd9a5b3625c5a3ca279e7c;hpb=5c8276e2cbd438c16948621188ddee4cc92a13d5 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13ad35d..20e466b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,22 +1,122 @@ -image: gcc +image: alpine -# build using Makefile -build: +variables: + GIT_SUBMODULE_STRATEGY: "recursive" + GIT_SSL_NO_VERIFY: "true" + +stages: + - build + - test + - deploy + +# build advent itself +binary:debug: stage: build - before_script: - - apt update && apt -y install make + before_script: + - apk update + - apk add make gcc musl-dev python3 + - pip3 install PyYAML script: - - make advent + - make debug artifacts: paths: - advent + - cheat + - "*.gcda" + - "*.gcno" # cache outputs to reduce the build time cache: paths: - "*.o" +binary:release: + stage: build + before_script: + - apk update + - apk add make gcc musl-dev python3 + - pip3 install PyYAML + script: + - make advent cheat + artifacts: + paths: + - advent + - cheat + # cache outputs to reduce the build time + cache: + paths: + - "*.o" + +manpage: + stage: build + before_script: + - apk update + - apk add make asciidoc + script: + - make advent.6 + artifacts: + paths: + - advent.6 + +html: + stage: build + before_script: + - apk update + - apk add make asciidoc libxslt + script: + - make html + artifacts: + paths: + - "*.html" + +dist: + stage: build + before_script: + - apk update + - apk add make asciidoc + 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: + - apk update + - apk add make gcc + - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted + script: + - make coverage + artifacts: + paths: + - coverage + dependencies: + - binary:debug + +test:release: stage: test + before_script: + - apk update + - apk add make 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 +