From 91039b973bb5c751edc6bd5d677bbd2f983af8d8 Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Mon, 29 Apr 2019 23:51:33 +0200
Subject: [PATCH] Prepare multiple images

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 12d96b181..ad5caaf86 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,3 @@
-image: localhost:5000/ubuntu_gcc8
-
 cache:
   key: "$CI_COMMIT_REF_SLUG"
   paths:
@@ -11,7 +9,8 @@ stages:
   - test
   - deploy
 
-build:coverage:
+build:gcc8-seq-coverage:
+  image: localhost:5000/ubuntu_gcc8
   stage: build
   script:
     - mkdir -p build
@@ -19,10 +18,11 @@ build:coverage:
     - CXX=g++-8 CC=gcc-8 cmake .. -DCMAKE_BUILD_TYPE=Coverage
     - make pugs
 
-test:coverage:
+test:gcc8-seq-coverage:
+  image: localhost:5000/ubuntu_gcc8
   stage: test
   dependencies:
-    - build:coverage
+    - build:gcc8-seq-coverage
   script:
     - cd build
     - make run_unit_tests
-- 
GitLab