From 4492f40d6128b635249e1bce2100875b851c96cc Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Fri, 2 Dec 2016 08:40:24 +0100 Subject: [PATCH] 6 stages --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 600e72d..9212fd3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,7 +16,7 @@ stages: # Template for the build stage # Needs to run on all supported architectures, platforms and python versions -.build_bob_template: &build_job +.build_bob_template: &build_bob_job stage: build_bob before_script: - git clean -ffdx @@ -38,7 +38,7 @@ stages: # Template for the test stage - re-installs from uploaded wheels # Needs to run on all supported architectures, platforms and python versions -.test_bob_template: &test_job +.test_bob_template: &test_bob_job stage: test_bob before_script: #- ./_ci/install.sh _ci #updates @@ -51,7 +51,7 @@ stages: # Template for the wheel uploading stage # Needs to run against all combinations of python and operating systems -.wheels_bob_template: &wheels_job +.wheels_bob_template: &wheels_bob_job stage: wheels_bob environment: intranet only: @@ -73,25 +73,25 @@ stages: # Linux + Python 2.7: Builds, tests, uploads wheel and deploys (if needed) build_bob_linux_27: - <<: *build_job + <<: *build_bob_job variables: &linux_27_build_variables PYTHON_VERSION: "2.7" tags: - conda-linux test_bob_linux_27: - <<: *test_job + <<: *test_bob_job variables: *linux_27_build_variables dependencies: - - build_linux_27 + - build_bob_linux_27 tags: - conda-linux wheels_bob_linux_27: - <<: *wheels_job + <<: *wheels_bob_job variables: *linux_27_build_variables dependencies: - - build_linux_27 + - build_bob_linux_27 tags: - conda-linux -- GitLab