Improve Travis CI auto skip build script

This commit is contained in:
Peter Dave Hello 2018-11-18 01:13:15 +08:00
parent dca26e2122
commit 00d7dfcbbf
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ services:
echo "This is a new branch"
elif ! git diff --name-only "$TRAVIS_COMMIT_RANGE" -- &> /dev/null; then
echo "Change range not recognized: '$TRAVIS_COMMIT_RANGE'"
elif git diff --name-only "$TRAVIS_COMMIT_RANGE" -- | grep -Eq "^$Dockerfile"; then
elif git diff --name-only "$TRAVIS_COMMIT_RANGE" -- | grep -Eq "^$Dockerfile$"; then
echo "Change of $Dockerfile detected."
else
echo "Skip build of $Dockerfile as it's not changed."

View File

@ -22,7 +22,7 @@ services:
echo "This is a new branch"
elif ! git diff --name-only "$TRAVIS_COMMIT_RANGE" -- &> /dev/null; then
echo "Change range not recognized: '$TRAVIS_COMMIT_RANGE'"
elif git diff --name-only "$TRAVIS_COMMIT_RANGE" -- | grep -Eq "^$Dockerfile"; then
elif git diff --name-only "$TRAVIS_COMMIT_RANGE" -- | grep -Eq "^$Dockerfile$"; then
echo "Change of $Dockerfile detected."
else
echo "Skip build of $Dockerfile as it's not changed."