From d727e8ab87f54bffc9a4968cfe9909c60f32b4f2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Thu, 6 Dec 2018 12:34:41 +0100
Subject: [PATCH] Ensure that jobs are run on the right runners (now that we
 have several runner classes)

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8a1a913529..d2e7c3ea16 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,6 +9,7 @@ before_script:
 
 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")'
@@ -23,6 +24,7 @@ build_binaries:
 
 build_doc:
   stage: build
+  tags: dynare
   script:
     - autoreconf -si
     - ./configure --disable-matlab --disable-octave
@@ -35,6 +37,7 @@ 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")'
@@ -54,6 +57,7 @@ testsuite_matlab:
 
 .testsuite_octave_template:
   stage: test
+  tags: dynare
   variables:
     OPENBLAS_NUM_THREADS: 1
   script:
-- 
GitLab