From 2872ad978cf6f0f4ecd4d778bf2137fa619d2201 Mon Sep 17 00:00:00 2001 From: Bram Veenboer <bram.veenboer@gmail.com> Date: Thu, 10 Aug 2023 11:11:40 +0200 Subject: [PATCH] Call 'make test' to run all tests --- .gitlab-ci.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b51cb91..904d81a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ build: - cmake .. - make -j -test-example: +test: stage: testing tags: - das6 @@ -26,20 +26,4 @@ test-example: - mkdir build && cd build - cmake .. -DBUILD_TESTING=On - make -j - - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/libtcc - - test/SimpleExample/SimpleExample - -test-correlator: - stage: testing - tags: - - das6 - dependencies: - - build - script: - - source scripts/load-modules.sh - - mkdir build && cd build - - cmake .. -DBUILD_TESTING=On - - make -j - - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/libtcc - - test/CorrelatorTest/CorrelatorTest -n 20 - + - make test -- GitLab