Verify checksums for pull requests from other people

This has the CI step verify the checksums for URLs that might have been
added or edited to build definitions in a pull request.
This commit is contained in:
Mislav Marohnić 2014-09-08 09:14:43 -07:00
parent bff583b247
commit 3add5c4637
2 changed files with 15 additions and 0 deletions

View file

@ -8,6 +8,8 @@ bats -t test || STATUS="$?"
if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then
./script/mirror update "$TRAVIS_COMMIT_RANGE"
elif [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
./script/mirror verify "$TRAVIS_COMMIT_RANGE"
fi
exit "$STATUS"