From 1fba14c61585839f85ed416a1ebfc5899a3d0a0d Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 23 Jan 2022 15:20:51 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9d073c9..d500115 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,13 +33,11 @@ build-job: # This job runs in the build stage, which runs first. - cmake .. - cmake --build . - echo "Compile complete." - - ls -la - - echo "build files listed." 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: - - cd build + - ls -la - echo "Running unit tests..." - ctest