From 2fd7018f33ad69d2912c018437efcbe328a3f565 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Sat, 24 Sep 2016 09:00:37 +0200 Subject: [PATCH] Fix usage of install.sh --- templates/ci-for-cxx-extensions.yml | 8 ++++---- templates/ci-for-python-only.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/ci-for-cxx-extensions.yml b/templates/ci-for-cxx-extensions.yml index d37e083..7c4594f 100644 --- a/templates/ci-for-cxx-extensions.yml +++ b/templates/ci-for-cxx-extensions.yml @@ -44,7 +44,7 @@ stages: .test_template: &test_job stage: test before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_test.sh script: - ./_ci/test.sh @@ -61,7 +61,7 @@ stages: - master - /^v\d+\.\d+\.\d+([abc]\d*)?$/ # PEP-440 compliant version (tags) before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_wheels.sh script: - ./_ci/wheels.sh @@ -77,7 +77,7 @@ stages: only: - master before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_docs.sh script: - ./_ci/docs.sh @@ -97,7 +97,7 @@ stages: except: - branches before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_deploy.sh script: - ./_ci/deploy.sh diff --git a/templates/ci-for-python-only.yml b/templates/ci-for-python-only.yml index 47da9ed..fa11e07 100644 --- a/templates/ci-for-python-only.yml +++ b/templates/ci-for-python-only.yml @@ -44,7 +44,7 @@ stages: .test_template: &test_job stage: test before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_test.sh script: - ./_ci/test.sh @@ -61,7 +61,7 @@ stages: - master - /^v\d+\.\d+\.\d+([abc]\d*)?$/ # PEP-440 compliant version (tags) before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_wheels.sh script: - ./_ci/wheels.sh @@ -77,7 +77,7 @@ stages: only: - master before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_docs.sh script: - ./_ci/docs.sh @@ -97,7 +97,7 @@ stages: except: - branches before_script: - - ./_ci/install.sh #updates + - ./_ci/install.sh _ci #updates - ./_ci/before_deploy.sh script: - ./_ci/deploy.sh -- GitLab