Merge pull request #41 from aiyengar2/fix_charts

Use for loop to run CI per charts
pull/44/head
aiyengar2 2020-09-24 17:24:20 -07:00 committed by GitHub
commit 3c4201f7ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -11,6 +11,7 @@ git checkout origin/${1} ./sha256sum || true
charts=$(./scripts/produce-sha256) charts=$(./scripts/produce-sha256)
if [[ -n ${charts} ]]; then # produce-sha256 produces sha256 and print out chart name that has changed, and only run CI against changed chart
echo $charts | xargs ./scripts/ci for i in $(./scripts/produce-sha256); do
fi ./scripts/ci $i
done