Update .gitlab-ci.yml file

This commit is contained in:
Administrator 2022-01-23 15:32:37 +00:00
parent 32191ed51d
commit e9904c88fb

View File

@ -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