diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a21ca31..aa861d8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,14 +29,16 @@ build-job: # This job runs in the build stage, which runs first. - mkdir build - cd build - echo "execute cmake" - - cmake .. - - cmake --build . - - echo "Compile complete." - - ls -la + #- cmake .. + #- cmake --build . + #- echo "Compile complete." + #- ls -la 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 - mkdir build - cd build - echo "execute cmake"