UNCLASSIFIED - NO CUI

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

fix?

parent 92a951fc
No related branches found
No related tags found
1 merge request!468Modify script execution in CI
Pipeline #249692 failed
......@@ -96,16 +96,18 @@ pre vars:
.deploy_bigbang: &deploy_bigbang
- |
set -e
for deploy_script in scripts/deploy/*.sh; do
for deploy_script in scripts/deploy/**/*.sh; do
chmod +x ${deploy_script}
echo "Executing ${deploy_script}..."
./${deploy_script}
done
.test_bigbang: &test_bigbang
- |
set -e
for test_script in tests/*.sh; do
for test_script in tests/**/*.sh; do
chmod +x ${test_script}
echo "Executing ${test_script}"
./${test_script}
done
......
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