From 89fa6b4125e5c8de7fc08144eb2665b1e7ed9f3b Mon Sep 17 00:00:00 2001
From: Tiago Freitas Pereira <tiagofrepereira@gmail.com>
Date: Wed, 30 Nov 2016 21:44:10 +0100
Subject: [PATCH] New ci full test

---
 .gitlab-ci.yml              | 123 ++++++++++++++++++++++++++++++++++++
 requirements-bob.txt        |   2 +-
 requirements-satellites.txt |   2 +-
 3 files changed, 125 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f7ef338..cd076ea 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -94,4 +94,127 @@ wheels_linux_27:
     - build_linux_27
   tags:
     - conda-linux
+    
 
+# Linux + Python 3.4: Builds and tests
+build_linux_34:
+  <<: *build_job
+  variables: &linux_34_build_variables
+    PYTHON_VERSION: "3.4"
+  tags:
+    - conda-linux
+
+test_linux_34:
+  <<: *test_job
+  variables: *linux_34_build_variables
+  dependencies:
+    - build_linux_34
+  tags:
+    - conda-linux
+
+wheels_linux_34:
+  <<: *wheels_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
+  variables: &linux_35_build_variables
+    PYTHON_VERSION: "3.5"
+  tags:
+    - conda-linux
+
+test_linux_35:
+  <<: *test_job
+  variables: *linux_35_build_variables
+  dependencies:
+    - build_linux_35
+  tags:
+    - conda-linux
+
+wheels_linux_35:
+  <<: *wheels_job
+  variables: *linux_35_build_variables
+  dependencies:
+    - build_linux_35
+  tags:
+    - conda-linux
+
+# Mac OSX + Python 2.7: Builds and tests
+build_macosx_27:
+  <<: *build_job
+  variables: &macosx_27_build_variables
+    PYTHON_VERSION: "2.7"
+  tags:
+    - conda-macosx
+
+test_macosx_27:
+  <<: *test_job
+  variables: *macosx_27_build_variables
+  dependencies:
+    - build_macosx_27
+  tags:
+    - conda-macosx
+
+wheels_macosx_27:
+  <<: *wheels_job
+  variables: *macosx_27_build_variables
+  dependencies:
+    - build_macosx_27
+  tags:
+    - conda-macosx
+
+
+# Mac OSX + Python 3.4: Builds and tests
+build_macosx_34:
+  <<: *build_job
+  variables: &macosx_34_build_variables
+    PYTHON_VERSION: "3.4"
+  tags:
+    - conda-macosx
+
+test_macosx_34:
+  <<: *test_job
+  variables: *macosx_34_build_variables
+  dependencies:
+    - build_macosx_34
+  tags:
+    - conda-macosx
+
+wheels_macosx_34:
+  <<: *wheels_job
+  variables: *macosx_34_build_variables
+  dependencies:
+    - build_macosx_34
+  tags:
+    - conda-macosx
+
+
+# Mac OSX + Python 3.5: Builds and tests
+build_macosx_35:
+  <<: *build_job
+  variables: &macosx_35_build_variables
+    PYTHON_VERSION: "3.5"
+  tags:
+    - conda-macosx
+
+test_macosx_35:
+  <<: *test_job
+  variables: *macosx_35_build_variables
+  dependencies:
+    - build_macosx_35
+  tags:
+    - conda-macosx
+
+wheels_macosx_35:
+  <<: *wheels_job
+  variables: *macosx_35_build_variables
+  dependencies:
+    - build_macosx_35
+  tags:
+    - conda-macosx
diff --git a/requirements-bob.txt b/requirements-bob.txt
index 48df22f..78ac12c 100644
--- a/requirements-bob.txt
+++ b/requirements-bob.txt
@@ -29,4 +29,4 @@ bob.db.iris
 bob.db.mnist
 bob.db.wine
 bob.db.atnt
-bob.db.arface
\ No newline at end of file
+bob.db.arface
diff --git a/requirements-satellites.txt b/requirements-satellites.txt
index 9e36e4a..0d5f4a3 100644
--- a/requirements-satellites.txt
+++ b/requirements-satellites.txt
@@ -30,4 +30,4 @@ bob.db.asvspoof
 bob.db.kboc16
 bob.db.putvein
 bob.db.ijba
-bob.db.cuhk_cufs
\ No newline at end of file
+bob.db.cuhk_cufs
-- 
GitLab