From 8fcaf814aae9a459b83db62986fdaa26dda979dd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Franck=20P=C3=A9rignon?= <franck.perignon@imag.fr>
Date: Wed, 18 May 2016 12:37:11 +0000
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 54 ++++++++++++--------------------------------------
 1 file changed, 13 insertions(+), 41 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 76022f0e8..c9b273bd4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,8 +2,7 @@ stages:
   - configure
   - build
   - test
-  - install
-  - uninstall
+
 
 
 config:debian:
@@ -20,6 +19,12 @@ build:debian:
   script:
     - cd build
     - make
+    - make install
+    - cd ..
+    - python -c 'import hysop'
+    - cd build
+    - make uninstall
+    - make clean
   artifacts:
     paths:
     - build/
@@ -34,26 +39,6 @@ test:debian:
     paths:
     - build/
 
-deploy:debian:
-  image: fperignon/hysop:debian
-  stage: install
-  script:
-    - cd build
-    - make install
-    - cd
-    - python -c 'import hysop'
-  artifacts:
-    paths:
-    - build/
-
-clean:debian:
-  image: fperignon/hysop:debian
-  stage: uninstall
-  script:
-    - cd build
-    - make uninstall
-    - make clean
-
 config:ubuntu:
   image: fperignon/hysop:ubuntu
   stage: configure
@@ -68,6 +53,12 @@ build:ubuntu:
   script:
     - cd build
     - make
+    - make install
+    - cd ..
+    - python -c 'import hysop'
+    - cd build
+    - make uninstall
+    - make clean
   artifacts:
     paths:
     - build/
@@ -82,22 +73,3 @@ test:ubuntu:
     paths:
     - build/
 
-deploy:ubuntu:
-  image: fperignon/hysop:ubuntu
-  stage: install
-  script:
-    - cd build
-    - make install
-    - cd
-    - python -c 'import hysop'
-  artifacts:
-    paths:
-    - build/
-
-clean:ubuntu:
-  image: fperignon/hysop:ubuntu
-  stage: uninstall
-  script:
-    - cd build
-    - make uninstall
-    - make clean
-- 
GitLab