From 7196b1364b3d50c1feb869d0e664319b84331b92 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 15 Jan 2019 21:05:12 +0100 Subject: [PATCH] [ci] Use new bootstrap.py --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f123ab81..1ecd818b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ stages: .build_template: &build_job stage: build before_script: - - ./ci/bootstrap.sh build + - python3 ./ci/bootstrap.py build script: - ./ci/build.sh cache: &build_caches @@ -74,7 +74,7 @@ build_macosx_36: .deploy_template: &deploy_job stage: deploy before_script: - - ./ci/bootstrap.sh local myenv + - python3 ./ci/bootstrap.py local myenv script: - source ${CONDA_ROOT}/etc/profile.d/conda.sh - conda activate myenv @@ -115,7 +115,7 @@ pypi: except: - branches before_script: - - ./ci/bootstrap.sh local myenv + - python3 ./ci/bootstrap.py local myenv script: - source ${CONDA_ROOT}/etc/profile.d/conda.sh - conda activate myenv -- GitLab