UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 855eb871 authored by joshwolf's avatar joshwolf
Browse files

Merge branch '243-include-bigbang-repos-into-repositories-tar-gz' into 'master'

Resolve "Include Bigbang repos into repositories.tar.gz"

Closes #243

See merge request platform-one/big-bang/bigbang!340
parents 820c798a e152d132
No related branches found
No related tags found
1 merge request!340Resolve "Include Bigbang repos into repositories.tar.gz"
Pipeline #195716 passed
......@@ -3,6 +3,10 @@ set -ex
mkdir -p repos/
# "Package" ourselves
# Do it this way on purpose (instead of cp or rsync) to ensure this never includes any unwanted "build" artifacts
git -C repos/ clone -b ${CI_COMMIT_REF_NAME} ${CI_REPOSITORY_URL}
# Clone core
yq e ".*.git.repo | select(. != null) | path | .[-3] " "chart/values.yaml" | while IFS= read -r package; do
git -C repos/ clone -b $(yq e ".${package}.git.tag" "chart/values.yaml") $(yq e ".${package}.git.repo" "chart/values.yaml")
......
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