From 6dce04c229b152821f88a67ffc55fbe507070c7a Mon Sep 17 00:00:00 2001 From: Christian Boettcher <c.boettcher@fz-juelich.de> Date: Wed, 4 Aug 2021 08:15:42 +0000 Subject: [PATCH] Update .gitlab-ci.yml file to include echo with message --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9a8cf78..d6d9e0e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,8 +107,8 @@ test-testing: variables: TESTING_URL: https://zam10036.zam.kfa-juelich.de/ script: - - "TODO: This should run tests for the testing deployment, to ensure full functionality of the deployment." - - "For now, this will be a basic health check i.e. GET / and check for 2xx code." + - echo "TODO This should run tests for the testing deployment, to ensure full functionality of the deployment." + - echo "For now, this will be a basic health check i.e. GET / and check for 2xx code." - 'curl -f -H "Accept: application/json" $TESTING_URL' test-production: @@ -122,8 +122,8 @@ test-production: variables: PRODUCTION_URL: https://datacatalog.fz-juelich.de/ script: - - "TODO: This should run tests for the production deployment, to ensure full functionality of the deployment." - - "For now, this will be a basic health check i.e. GET / and check for 2xx code." + - echo "TODO This should run tests for the production deployment, to ensure full functionality of the deployment." + - echo "For now, this will be a basic health check i.e. GET / and check for 2xx code." - 'curl -f -H "Accept: application/json" $PRODUCTION_URL' publishgit-do: -- GitLab