From 70a169030c3c36895fbe449efaa4369e92ee2097 Mon Sep 17 00:00:00 2001
From: ViaFerrata <michimoser@onlinehome.de>
Date: Fri, 21 Dec 2018 13:23:49 +0100
Subject: [PATCH] Fix CI.

---
 .gitlab-ci.yml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 500502c..02a4137 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,5 @@
 stages:
-  - test
+  - install
   - doc
   - release
 
@@ -8,11 +8,11 @@ before_script:
   - pip install -U pip setuptools wheel numpy
   - pip install .
 
-test:
+install-os:
     image: docker.km3net.de/base/python:3
-    stage: test
+    stage: install
     script:
-        - echo narf
+        - pip install .
 
 pages:
     image: docker.km3net.de/base/python:3
@@ -23,6 +23,9 @@ pages:
     artifacts:
         paths:
             - public
+    only:
+        - tags
+        - master
 
 pypi:
     image: docker.km3net.de/base/python:3
-- 
GitLab