From e9af5f9a7bd128b35ff680e870457fc52099d369 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Thu, 6 Dec 2018 15:19:34 +0100
Subject: [PATCH] Remove runner tags, actually not needed

We rather rely on the Gitlab setting that prevents some runners from accepting
jobs without tags.

(cherry picked from commit 540e3c2c4172b832d53558fceb01a4e0b2724a13)
---
 .gitlab-ci.yml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dc3ae2333a..01261945ea 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,8 +4,6 @@ variables:
 
 build_binaries:
   stage: build
-  tags:
-    - dynare
   script:
     - autoreconf -si
     - './configure --with-matlab=$(dirname $(dirname $(readlink -f `which matlab`))) MATLAB_VERSION=$(echo version | matlab -nodesktop -nodisplay -nosplash 2>/dev/null | sed -En "/ans\ =/!d;n;n;s/^[^0-9]*([0-9]+\.[0-9]+).*$/\1/;p")'
@@ -20,8 +18,6 @@ build_binaries:
 
 build_doc:
   stage: build
-  tags:
-    - dynare
   script:
     - autoreconf -si
     - ./configure --disable-matlab --disable-octave
@@ -34,8 +30,6 @@ build_doc:
 
 testsuite_matlab:
   stage: test
-  tags:
-    - dynare
   script:
     - autoreconf -si
     - './configure --disable-octave --with-matlab=$(dirname $(dirname $(readlink -f `which matlab`))) MATLAB_VERSION=$(echo version | matlab -nodesktop -nodisplay -nosplash 2>/dev/null | sed -En "/ans\ =/!d;n;n;s/^[^0-9]*([0-9]+\.[0-9]+).*$/\1/;p")'
@@ -55,8 +49,6 @@ testsuite_matlab:
 
 .testsuite_octave_template:
   stage: test
-  tags:
-    - dynare
   variables:
     OPENBLAS_NUM_THREADS: 1
   script:
-- 
GitLab