From 61c2c30c8bf53ede614a3200e8ac3a5ec52bfe27 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= <jvallve@iri.upc.edu>
Date: Fri, 21 Jan 2022 09:45:49 +0100
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 67b9b60..fc27189 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,12 +4,12 @@ stages:          # List of stages for jobs, and their order of execution
 
 ############ YAML ANCHORS ############
 .script_gcc5_template: &script_gcc5_definition
-  - apt-get update
-  - apt-get install software-properties-common
-  - add-apt-repository ppa:ubuntu-toolchain-r/test
-  - apt-get update
-  - apt-get install gcc-snapshot
-  - apt-get install gcc-5 g++-5
+  - apt-get update -y
+  - apt-get install software-properties-common -y
+  - add-apt-repository ppa:ubuntu-toolchain-r/test -y
+  - apt-get update -y
+  - apt-get install gcc-snapshot -y
+  - apt-get install gcc-5 g++-5 -y
 
 .script_install_template: &script_install_definition
   - apt-get update -y && apt-get install -y expect
-- 
GitLab