UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 9a7307b0 authored by Micah Nagel's avatar Micah Nagel Committed by runyontr
Browse files

Modify script execution in CI

parent 75a9331c
No related branches found
No related tags found
1 merge request!468Modify script execution in CI
......@@ -94,10 +94,22 @@ 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 $(find ./scripts/deploy -type f -name '*.sh' | sort); do
chmod +x ${deploy_script}
echo "Executing ${deploy_script}..."
./${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 $(find ./tests -type f -name '*.sh' | sort); do
chmod +x ${test_script}
echo "Executing ${test_script}..."
./${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