From ba429ee7f6943fa2288930d8b8ea0016abc33a16 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 23 Jan 2022 16:18:28 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5349485..52e3021 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,18 +37,18 @@ 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: - - apt update - - apt install googletest + #- apt update + #- apt install googletest - mkdir build - cd build - echo "execute cmake" - cmake .. - cmake --build . - echo "Running unit tests..." - #- export GTEST_OUTPUT="xml:report.xml" + - export GTEST_OUTPUT="xml:report.xml" - ctest - - ls -la - - ctest --gtest_output="xml:report.xml" + #- ls -la + #- ctest --gtest_output="xml:report.xml" - ls -la artifacts: when: always