From c1c615124108838a9fffe66f57fdddcde9e17bf3 Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Tue, 17 Mar 2020 13:35:12 +0100 Subject: [PATCH] TMSS-163: added integration test for TMSS --- .gitlab-ci.yml | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd91a59e838..03315e49d11 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -102,14 +102,32 @@ unit_test_TMSS: # INTEGRATION TEST STAGE # +integration_test_TMSS: + stage: integration_test + image: ci_sas:latest +# services: +# - rabbitmq:latest + script: + - PACKAGE=TMSS + - echo "Integration Testing $PACKAGE..." + - cd build/gnucxx11_opt + - SKIP_INTEGRATION_TESTS=false SKIP_UNIT_TESTS=true ctest + dependencies: + - build_TMSS + artifacts: + name: integration-test-report + when: always + paths: + - build/gnucxx11_opt/Testing/Temporary/LastTest.log + integration_test_RAServices: stage: integration_test image: ci_sas:latest - services: - - rabbitmq:latest +# services: +# - rabbitmq:latest script: - PACKAGE=RAServices - - echo "Testing $PACKAGE..." + - echo "Integration Testing $PACKAGE..." - cd build/gnucxx11_opt - SKIP_INTEGRATION_TESTS=false SKIP_UNIT_TESTS=true ctest dependencies: -- GitLab