X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=.gitlab-ci.yml;h=b1e9653731eba7d43e0fbd9685d28055d4df6a9a;hp=e6d8543d0d2331716e116dddb1d589d27944bf96;hb=33e546b746ca4e26e27ee9ad5c8655dc11fdef07;hpb=d529a143567da29ccfd4ece14c21893cf8a6623d diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e6d8543..b1e9653 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,9 +10,9 @@ binary:debug: stage: build before_script: - apk update - - apk add make gcc musl-dev python3 libedit-dev - - pip3 install PyYAML - script: + - apk add make gcc musl-dev python py2-pip libedit-dev + - pip install PyYAML + script: - make debug artifacts: paths: @@ -29,9 +29,9 @@ binary:release: stage: build before_script: - apk update - - apk add make gcc musl-dev python3 libedit-dev - - pip3 install PyYAML - script: + - apk add make gcc musl-dev python py2-pip libedit-dev + - pip install PyYAML + script: - make advent cheat artifacts: paths: @@ -81,7 +81,8 @@ test:debug: stage: test before_script: - apk update - - apk add make gcc libedit-dev + - 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 script: - cd tests @@ -118,4 +119,3 @@ pages: - master dependencies: - test:debug -