From a169a60e40e154a81ec11f5cc6d4f2b1e606a3a4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= <jvallve@iri.upc.edu>
Date: Wed, 19 Jan 2022 17:38:47 +0100
Subject: [PATCH] Update .gitlab-ci.yml file

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b367d28..b70c31d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,21 +6,24 @@ installation-test-xenial:       # This job runs in the build stage, which runs f
   stage: install
   image: ubuntu:16.04
   script:
-    - apt install expect -y
+    - apt-get update -y
+    - apt-get install expect -y
     - ./auto_script_wolf
 
 installation-test-bionic:       # This job runs in the build stage, which runs first.
   stage: install
   image: ubuntu:18.04
   script:
-    - apt install expect -y
+    - apt-get update -y
+    - apt-get install expect -y
     - ./auto_script_wolf
 
 installation-test-focal:       # This job runs in the build stage, which runs first.
   stage: install
   image: ubuntu:20.04
   script:
-    - apt install expect -y
+    - apt-get update -y
+    - apt-get install expect -y
     - ./auto_script_wolf
 
 lint-test-job:   # This job also runs in the test stage.
-- 
GitLab