From 0e04df23dad64f3314bd884bbcce85b714ae45d6 Mon Sep 17 00:00:00 2001
From: Eliah Rebstock <elireb54@outlook.com>
Date: Thu, 28 Feb 2019 21:22:41 +0100
Subject: [PATCH] Reduce CI log output on dependencies steps

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index be6335d..659337b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,8 +2,8 @@ image: ubuntu:bionic
 
 before_script:
   - dpkg --add-architecture i386
-  - apt-get update
-  - apt-get install -y libx11-dev:i386 libc6-dev-i386 libx11-dev libc6-dev build-essential
+  - apt-get update -q
+  - apt-get install -q -y libx11-dev:i386 libc6-dev-i386 libx11-dev libc6-dev build-essential
 
 stages:
   - build
@@ -20,10 +20,9 @@ make:
 unit-tests:
   stage: test
   script:
-    - apt-get install -y software-properties-common
+    - apt-get install -q -y software-properties-common
     - add-apt-repository -y ppa:snaipewastaken/ppa
-    - apt-get update
-    - apt-get install -y criterion-dev
+    - apt-get install -q -y criterion-dev
     - make test
     - ./test/test
   tags:
-- 
GitLab