From 86aa87843d32099696fd539521e36bd3ba5b5d48 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Thu, 6 Dec 2018 12:37:01 +0100
Subject: [PATCH] Fix YAML

(cherry picked from commit 17f4546447eb943593e1bdadc010f8dabd246e7b)
---
 .gitlab-ci.yml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e26770d98f..dc3ae2333a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,8 @@ variables:
 
 build_binaries:
   stage: build
-  tags: dynare
+  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")'
@@ -19,7 +20,8 @@ build_binaries:
 
 build_doc:
   stage: build
-  tags: dynare
+  tags:
+    - dynare
   script:
     - autoreconf -si
     - ./configure --disable-matlab --disable-octave
@@ -32,7 +34,8 @@ build_doc:
 
 testsuite_matlab:
   stage: test
-  tags: dynare
+  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")'
@@ -52,7 +55,8 @@ testsuite_matlab:
 
 .testsuite_octave_template:
   stage: test
-  tags: dynare
+  tags:
+    - dynare
   variables:
     OPENBLAS_NUM_THREADS: 1
   script:
-- 
GitLab