From 98bd9a868821f5fea6a72b6bef95b20a24244a87 Mon Sep 17 00:00:00 2001
From: Yannick Perret <yannick.perret@insa-lyon.fr>
Date: Mon, 12 Jul 2021 17:30:49 +0000
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 941b8e0..8a5a229 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,22 +15,30 @@ after_script:
 
 build1:
   stage: build
+  tags:
+    - docker
   script:
     - echo "Do your build here"
 
 test1:
   stage: test
+  tags:
+    - docker
   script:
     - echo "Do a test here"
     - echo "For example run a test suite"
 
 test2:
   stage: test
+  tags:
+    - docker
   script:
     - echo "Do another parallel test here"
     - echo "For example run a lint test"
 
 deploy1:
   stage: deploy
+  tags:
+    - docker
   script:
     - echo "Do your deploy here"
-- 
GitLab