UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit cc5e5749 authored by Micah Nagel's avatar Micah Nagel
Browse files

break pipeline if one script fails

parent c974175e
No related branches found
No related tags found
1 merge request!468Modify script execution in CI
Pipeline #249652 failed
......@@ -94,10 +94,18 @@ pre vars:
- tests/**/*
.deploy_bigbang: &deploy_bigbang
- find ./scripts/deploy -type f -name '*.sh' | sort | xargs -r -I {} sh -c 'echo {} && sh {}'
- |
set -e
for deploy_script in scripts/deploy/*.sh; do
./${deploy_script}
done
.test_bigbang: &test_bigbang
- find ./tests -type f -name '*.sh' | sort | xargs -r -I {} sh -c 'echo {} && sh {}'
- |
set -e
for test_script in tests/*.sh; do
./${test_script}
done
clean install:
stage: smoke tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment