From 344485f1a48642c77856ef032b4ef8e41eff490e Mon Sep 17 00:00:00 2001 From: Alex Iribarren <Alex.Iribarren@cern.ch> Date: Thu, 20 Sep 2018 17:16:14 +0200 Subject: [PATCH] Add some more output for convenience --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2c54f00..9b02f05 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -105,8 +105,8 @@ deploy_test: stage: deploy_test dependencies: [] script: - - for j in *.nomad; do nomad job validate <(envsubst < $j); done - - for j in *.nomad; do (nomad job plan -verbose <(envsubst < $j) || [[ $? -eq 0 || $? -eq 1 ]]) || break; done # plan returns 0 or 1 on success + - for j in *.nomad; do echo -e "\n${j}:"; nomad job validate <(envsubst < $j); done + - for j in *.nomad; do echo -e "\n${j}:"; (nomad job plan -verbose <(envsubst < $j) || [[ $? -eq 0 || $? -eq 1 ]]) || break; done # plan returns 0 or 1 on success deploy: <<: *nomad_deps @@ -114,4 +114,4 @@ deploy: dependencies: - deploy_test script: - - for j in *.nomad; do nomad job run <(envsubst < $j); done + - for j in *.nomad; do echo -e "\n${j}:"; nomad job run <(envsubst < $j); done -- GitLab