revert: revert: ci(aio): exclude changes in aio/content folder
This reverts commit 72143e80da
.
it seems that the previous build failure was a travis flake.
reverting the revert...
This commit is contained in:
parent
9f28e838d3
commit
3d85f72652
|
@ -43,20 +43,15 @@ timestamp=$(date +%s)
|
||||||
payloadData="$payloadData\"timestamp\": $timestamp, "
|
payloadData="$payloadData\"timestamp\": $timestamp, "
|
||||||
|
|
||||||
# Add change source: application, dependencies, or 'application+dependencies'
|
# Add change source: application, dependencies, or 'application+dependencies'
|
||||||
yarnChanged=false
|
applicationChanges=$(git diff --name-only $TRAVIS_COMMIT_RANGE $parentDir | grep -v ${parentDir}/content | grep -v ${parentDir}/yarn.lock | wc -l)
|
||||||
allChangedFiles=$(git diff --name-only $TRAVIS_COMMIT_RANGE $parentDir | wc -l)
|
dependencyChanges=$(git diff --name-only $TRAVIS_COMMIT_RANGE ${parentDir}/yarn.lock | wc -l)
|
||||||
allChangedFileNames=$(git diff --name-only $TRAVIS_COMMIT_RANGE $parentDir)
|
|
||||||
|
|
||||||
if [[ $allChangedFileNames == *"yarn.lock"* ]]; then
|
if [[ $dependencyChanges -eq 1 ]] && [[ $applicationChanges -eq 0 ]]; then
|
||||||
yarnChanged=true
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $allChangedFiles -eq 1 ]] && [[ "$yarnChanged" = true ]]; then
|
|
||||||
# only yarn.lock changed
|
# only yarn.lock changed
|
||||||
change='dependencies'
|
change='dependencies'
|
||||||
elif [[ $allChangedFiles -gt 1 ]] && [[ "$yarnChanged" = true ]]; then
|
elif [[ $dependencyChanges -eq 1 ]] && [[ $applicationChanges -gt 0 ]]; then
|
||||||
change='application+dependencies'
|
change='application+dependencies'
|
||||||
elif [[ $allChangedFiles -gt 0 ]]; then
|
elif [[ $applicationChanges -gt 0 ]]; then
|
||||||
change='application'
|
change='application'
|
||||||
else
|
else
|
||||||
# Nothing changed in aio/
|
# Nothing changed in aio/
|
||||||
|
|
Loading…
Reference in New Issue