From a8441053addf19f79f1ce6b86f4b6fa1c175f105 Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Fri, 2 Nov 2018 13:39:45 +0100 Subject: [PATCH] Finally fixed building process in GitlabCI --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e76baa7..460008b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,6 @@ stages: build: stage: build script: - - apt update && apt install -y build-essential + - apt update && apt install -y build-essential cmake - gcc --version - mkdir -p build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j