diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 596caceb91ccdee6566828429235f10cbf92c712..2045d19411756fe66f90a2d1af96939ca0225091 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -143,24 +143,6 @@ deploy_linux_27: - conda-linux -# Linux + Python 3.4: Builds and tests -build_linux_34: - <<: *build_job - variables: &linux_34_build_variables - PYTHON_VERSION: "3.4" - WHEEL_TAG: "py3" - tags: - - conda-linux - -test_linux_34: - <<: *test_job - variables: *linux_34_build_variables - dependencies: - - build_linux_34 - tags: - - conda-linux - - # Linux + Python 3.5: Builds, tests and uploads wheel build_linux_35: <<: *build_job @@ -193,3 +175,30 @@ docs_linux_35: - build_linux_35 tags: - conda-linux + + + +# Linux + Python 3.6: Builds and tests +build_linux_36: + <<: *build_job + variables: &linux_36_build_variables + PYTHON_VERSION: "3.6" + tags: + - conda-linux + +test_linux_36: + <<: *test_job + variables: *linux_36_build_variables + dependencies: + - build_linux_36 + tags: + - conda-linux + +wheels_linux_36: + <<: *wheels_job + variables: *linux_36_build_variables + dependencies: + - build_linux_36 + tags: + - conda-linux +