Skip to content
Snippets Groups Projects
Commit 4492f40d authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

6 stages

parent 5c5fbb10
No related branches found
No related tags found
1 merge request!2Ci2
Pipeline #
...@@ -16,7 +16,7 @@ stages: ...@@ -16,7 +16,7 @@ stages:
# Template for the build stage # Template for the build stage
# Needs to run on all supported architectures, platforms and python versions # 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 stage: build_bob
before_script: before_script:
- git clean -ffdx - git clean -ffdx
...@@ -38,7 +38,7 @@ stages: ...@@ -38,7 +38,7 @@ stages:
# Template for the test stage - re-installs from uploaded wheels # Template for the test stage - re-installs from uploaded wheels
# Needs to run on all supported architectures, platforms and python versions # 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 stage: test_bob
before_script: before_script:
#- ./_ci/install.sh _ci #updates #- ./_ci/install.sh _ci #updates
...@@ -51,7 +51,7 @@ stages: ...@@ -51,7 +51,7 @@ stages:
# Template for the wheel uploading stage # Template for the wheel uploading stage
# Needs to run against all combinations of python and operating systems # 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 stage: wheels_bob
environment: intranet environment: intranet
only: only:
...@@ -73,25 +73,25 @@ stages: ...@@ -73,25 +73,25 @@ stages:
# Linux + Python 2.7: Builds, tests, uploads wheel and deploys (if needed) # Linux + Python 2.7: Builds, tests, uploads wheel and deploys (if needed)
build_bob_linux_27: build_bob_linux_27:
<<: *build_job <<: *build_bob_job
variables: &linux_27_build_variables variables: &linux_27_build_variables
PYTHON_VERSION: "2.7" PYTHON_VERSION: "2.7"
tags: tags:
- conda-linux - conda-linux
test_bob_linux_27: test_bob_linux_27:
<<: *test_job <<: *test_bob_job
variables: *linux_27_build_variables variables: *linux_27_build_variables
dependencies: dependencies:
- build_linux_27 - build_bob_linux_27
tags: tags:
- conda-linux - conda-linux
wheels_bob_linux_27: wheels_bob_linux_27:
<<: *wheels_job <<: *wheels_bob_job
variables: *linux_27_build_variables variables: *linux_27_build_variables
dependencies: dependencies:
- build_linux_27 - build_bob_linux_27
tags: tags:
- conda-linux - conda-linux
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment