From 820e6944b15000f47c0e2c08f6edc25663ab1fc4 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 16 Jan 2018 14:30:34 +0100 Subject: [PATCH] Remove unused bits of gitlab ci template --- templates/gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/templates/gitlab-ci.yml b/templates/gitlab-ci.yml index 01f6671..5e9f6d8 100644 --- a/templates/gitlab-ci.yml +++ b/templates/gitlab-ci.yml @@ -1,9 +1,11 @@ # This build file uses template features from YAML so it is generic enough for # any Bob project. Don't modify it unless you know what you're doing. +# Definition of global variables (all stages) variables: CONDA_ROOT: "${CI_PROJECT_DIR}/miniconda" + # Definition of our build pipeline order stages: - build @@ -61,14 +63,12 @@ stages: build_linux_27: <<: *linux_build_job variables: - <<: *build_variables PYTHON_VERSION: "2.7" build_linux_36: <<: *linux_build_job variables: - <<: *build_variables PYTHON_VERSION: "3.6" BUILD_EGG: "true" artifacts: @@ -83,14 +83,12 @@ build_linux_36: build_macosx_27: <<: *macosx_build_job variables: - <<: *build_variables PYTHON_VERSION: "2.7" build_macosx_36: <<: *macosx_build_job variables: - <<: *build_variables PYTHON_VERSION: "3.6" -- GitLab