UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 1c3a523a authored by runyontr's avatar runyontr
Browse files

Merge branch 'break-pipeline' into 'master'

Modify script execution in CI

Closes #366

See merge request platform-one/big-bang/bigbang!468
parents 75a9331c 9a7307b0
No related branches found
No related tags found
1 merge request!468Modify script execution in CI
Pipeline #257958 passed
......@@ -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