From 6dc1e786587ef217ed12da398780ab3b36fd3fe9 Mon Sep 17 00:00:00 2001 From: Olegs NIKISINS <onikisins@italix03.idiap.ch> Date: Wed, 14 Jun 2017 09:15:21 +0200 Subject: [PATCH] Updated the gitlab ci to match current standarts --- .gitlab-ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5828c802..6489c109 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -177,6 +177,24 @@ docs_linux_35: - conda-linux +# Linux + Python 3.6: Builds and tests +build_linux_36: + <<: *build_job + variables: &linux_36_build_variables + PYTHON_VERSION: "3.6" + WHEEL_TAG: "py3" + tags: + - conda-linux + +test_linux_36: + <<: *test_job + variables: *linux_36_build_variables + dependencies: + - build_linux_36 + tags: + - conda-linux + + # Mac OSX + Python 2.7: Builds and tests build_macosx_27: <<: *build_job @@ -211,3 +229,21 @@ test_macosx_35: - build_macosx_35 tags: - conda-macosx + + +# Mac OSX + Python 3.6: Builds and tests +build_macosx_36: + <<: *build_job + variables: &macosx_36_build_variables + PYTHON_VERSION: "3.6" + WHEEL_TAG: "py3" + tags: + - conda-macosx + +test_macosx_36: + <<: *test_job + variables: *macosx_36_build_variables + dependencies: + - build_macosx_36 + tags: + - conda-macosx -- GitLab