From e9904c88fb3ccf5bd7071aa2ce372fbd42ba6a39 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 23 Jan 2022 15:32:37 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3eb9055..d736f3b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,6 +37,11 @@ build-job: # This job runs in the build stage, which runs first. unit-test-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: + - mkdir build + - cd build + - echo "execute cmake" + - cmake .. + - cmake --build . - ls -la - echo "Running unit tests..." - ctest