From 929b65c1563c9c5b0f449ac9c44aa511bc4fc18b Mon Sep 17 00:00:00 2001 From: Thomas Schleicher Date: Tue, 22 Oct 2024 16:24:56 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 124d0c4..fbce26e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,8 +13,10 @@ build_job: stage: build image: gcc:latest script: - - apt-get update -y - - apt-get install -y cmake libboost-all-dev + - apt-get update -y + - apt-get install -y cmake + - apt clean + - apt-get install -y libboost-all-dev - mkdir -p ${BUILD_DIR} - cd ${BUILD_DIR} - cmake .. ${CMAKE_OPTIONS}