From e7c8ab020e280d5f5a782689c35d912033b66b8e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Wed, 20 Mar 2024 16:10:21 +0100
Subject: [PATCH] chore : silenced calls to apt-get update/install

---
 .gitlab/ci/_global.gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab/ci/_global.gitlab-ci.yml b/.gitlab/ci/_global.gitlab-ci.yml
index 331373fe..d543cc31 100644
--- a/.gitlab/ci/_global.gitlab-ci.yml
+++ b/.gitlab/ci/_global.gitlab-ci.yml
@@ -20,5 +20,5 @@ workflow:
 default:
   image: nvidia/cuda:12.2.0-devel-ubuntu22.04
   before_script:
-    - apt update
-    - apt install -y cmake cppcheck python-is-python3 pip git gcovr unzip curl
+    - apt update -qq # -qq is for quiet/silent
+    - apt install -qq -y cmake cppcheck python-is-python3 pip git gcovr unzip curl 
-- 
GitLab