From 37197a800a62e31b05d7e8e97be16e37055e34cf Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Wed, 14 Jun 2017 13:28:59 -0700 Subject: [PATCH] Update pipeline for python3 and PyYAML. --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f30b2db..1d8b297 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,8 @@ binary:debug: stage: build before_script: - apk update - - apk add make gcc musl-dev + - apk add make gcc musl-dev python3 py-pip + - pip install PyYAML script: - make debug artifacts: @@ -31,7 +32,8 @@ binary:release: stage: build before_script: - apk update - - apk add make gcc musl-dev + - apk add make gcc musl-dev python3 py-pip + - pip install PyYAML script: - make advent artifacts: -- 2.31.1