From 8b38f66cbf1032745e9067580dbfd3d4ba495c5d Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Tue, 11 Jul 2017 15:57:50 -0700 Subject: [PATCH] Use Python 2 in Alpine Linux, because that's default. --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdf2bb7..481ab91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,8 +10,8 @@ binary:debug: stage: build before_script: - apk update - - apk add make gcc musl-dev python3 libedit-dev - - pip3 install PyYAML + - apk add make gcc musl-dev python libedit-dev + - pip install PyYAML script: - make debug artifacts: @@ -29,8 +29,8 @@ binary:release: stage: build before_script: - apk update - - apk add make gcc musl-dev python3 libedit-dev - - pip3 install PyYAML + - apk add make gcc musl-dev python libedit-dev + - pip install PyYAML script: - make advent cheat artifacts: @@ -81,8 +81,8 @@ test:debug: stage: test before_script: - apk update - - apk add make gcc python3 libedit-dev - - pip3 install PyYAML + - apk add make gcc python libedit-dev + - pip install PyYAML - apk add lcov --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted script: - cd tests -- 2.31.1