diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cd91a59e8382288bd73d78173009d3bbf10967ca..03315e49d1140d6f580a61f9d61c13e6f343c881 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: