From faec59da1e1d232a18f16adc1a4e1d3415bf0dc5 Mon Sep 17 00:00:00 2001
From: Your Name <stephan.seitz@fau.de>
Date: Tue, 3 Sep 2019 10:51:48 +0200
Subject: [PATCH] CI: always upload artifacts

---
 .gitlab-ci.yml | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8e41b11..3756543 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,8 +15,10 @@ windows:
     - python -m pip install -e .
     - python setup.py test
   artifacts:
+    when: always
     paths:
       - test-report
+      - htmlcov
 
 ubuntu:
   stage: test
@@ -27,11 +29,11 @@ ubuntu:
   script:
     - python3 -m pip install -e .
     - python3 setup.py test
-    - python3 setup.py doctest
   tags:
     - docker
     - cuda
   artifacts:
+    when: always
     paths:
       - test-report
       - htmlcov
@@ -49,9 +51,29 @@ conda:
   tags:
     - docker
   artifacts:
+    when: always
     paths:
       - test-report
       - htmlcov
+
+full:
+  stage: test
+  except:
+    variables:
+      - $ENABLE_NIGHTLY_BUILDS
+  image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda
+  script:
+    - python -m pip install -e .
+    - python setup.py test
+    - python setup.py doctest
+  tags:
+    - docker
+  artifacts:
+    when: always
+    paths:
+      - test-report
+      - htmlcov
+
 # -------------------- Linter & Documentation --------------------------------------------------------------------------
 
 
-- 
GitLab