X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=.gitlab-ci.yml;h=3644753c5d709b2e1bd3ae77d8fa0b2e1fd331f1;hp=b1e9653731eba7d43e0fbd9685d28055d4df6a9a;hb=faedb38a6499b3cc638079c1e17621c9f9b192f0;hpb=a0c33c24834a4b6d84ccc60fbffdda1a01495876 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b1e9653..3644753 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: alpine +image: opensuse:tumbleweed stages: - build @@ -9,44 +9,35 @@ stages: binary:debug: stage: build before_script: - - apk update - - apk add make gcc musl-dev python py2-pip libedit-dev - - pip install PyYAML + - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov script: - make debug artifacts: paths: - advent - cheat - - "*.gcda" - - "*.gcno" - # cache outputs to reduce the build time - cache: - paths: - "*.o" + - dungeon.c + - dungeon.h binary:release: stage: build before_script: - - apk update - - apk add make gcc musl-dev python py2-pip libedit-dev - - pip install PyYAML + - zypper install -y make gcc libedit-devel python python2-PyYAML script: - make advent cheat artifacts: paths: - advent - cheat - # cache outputs to reduce the build time - cache: - paths: - "*.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: @@ -56,8 +47,7 @@ manpage: html: stage: build before_script: - - apk update - - apk add make asciidoc libxslt + - zypper install -y make asciidoc libxslt script: - make html artifacts: @@ -67,8 +57,7 @@ html: dist: stage: build before_script: - - apk update - - apk add make asciidoc + - zypper install -y make asciidoc tar script: - export VERS=${CI_COMMIT_REF_NAME} - make dist -e @@ -80,26 +69,26 @@ dist: test:debug: stage: test before_script: - - apk update - - apk add make gcc python py2-pip libedit-dev - - pip install PyYAML - - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted + - zypper install -y make gcc libedit-devel libasan3 libubsan0 python python2-PyYAML lcov script: - - cd tests - - make - make coverage - - cd .. artifacts: paths: - coverage dependencies: - binary:debug +test:debug_clang: + stage: test + before_script: + - zypper install -y make clang libedit-devel python python2-PyYAML lcov + script: + - CC=clang make debug check + test:release: stage: test before_script: - - apk update - - apk add make libedit + - zypper install -y make libedit script: - cd tests - make