From ef1a06ff73101dfc5a93a2492d01429b4e4628a0 Mon Sep 17 00:00:00 2001
From: gscalamera <graziano.scalamera@elettra.eu>
Date: Thu, 9 Jun 2022 10:44:25 +0200
Subject: [PATCH] Add missing docker dependencies

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5e4f830..b9ac1d1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,6 +7,8 @@ stages:
 
 build_job:
   stage: build
+  before_script:
+    - sudo apt update && sudo apt -y --no-install-recommends install build-essential cmake pkg-config libboost-thread-dev
   script:
     - mkdir build && cd build
     - cmake -DBUILD_TESTS=ON ..
@@ -19,6 +21,8 @@ build_job:
 
 test_load_job:
   stage: test
+  before_script:
+    - sudo apt update && sudo apt -y --no-install-recommends install libboost-thread-dev
   script:
     - sleep 10
     - /usr/local/bin/DataBaseds 2 -ORBendPoint giop:tcp::10000 &
-- 
GitLab