From 410ee62a10a6dd3fd5a238fa78d3ea578fe7070a Mon Sep 17 00:00:00 2001
From: Nicolas Pope <nicolas.pope@utu.fi>
Date: Fri, 6 May 2022 16:39:53 +0100
Subject: [PATCH] Fix test dependencies

---
 .gitlab-ci.yml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 08d5f7d..0fba34d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,7 +33,6 @@ linux:build:
     - ninja
 
   cache:
-    key: $CI_COMMIT_SHORT_SHA
     paths:
       - build/
 
@@ -52,6 +51,7 @@ linux:test:
   
   needs: ["linux:build"]
   script:
+    - DEBIAN_FRONTEND=noninteractive apt update && apt install -y libmsgpackc2 liburiparser1 libgnutls28 cmake
     - cd build
     - ctest -V --output-junit report.xml
 
@@ -60,11 +60,6 @@ linux:test:
     reports:
       junit: build/report.xml
 
-  cache:
-    key: $CI_COMMIT_SHORT_SHA
-    paths:
-      - build/
-
 ### Windows
 
 #windows:build:
-- 
GitLab