Use Python 2 in Alpine Linux, because that's default.
authorJason S. Ninneman <jsn@mbar.us>
Tue, 11 Jul 2017 22:57:50 +0000 (15:57 -0700)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 11 Jul 2017 23:14:39 +0000 (23:14 +0000)
.gitlab-ci.yml

index fdf2bb726fb1266033cc651977fe8df5deaac43e..481ab91f1201c601f0946899c9abb69a25fd722d 100644 (file)
@@ -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