From 4d53ba0ab5943ed6aaca45f636e32c074f8621bd Mon Sep 17 00:00:00 2001
From: Florent Pruvost <florent.pruvost@inria.fr>
Date: Tue, 3 Jan 2017 15:44:32 +0100
Subject: [PATCH] modify .gitlab-ci   - pipeline build and test in one job   -
 limit ctests to test_shm_s (testing, shared memory, simple precision) to
 reduce the testing time

---
 .gitlab-ci.yml | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3678fe08c..24f9c4ff8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,4 @@
-stages:
-  - build
-  - test
-
-build:
-  stage: build
+buildandtest:
   script:
     - git submodule init
     - git submodule update
@@ -11,7 +6,4 @@ build:
     - cd build
     - cmake ..
     - make -j2
-
-test:
-  stage: test
-  script: ctest
\ No newline at end of file
+    - ctest -R test_shm_s
-- 
GitLab