1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-15 12:08:59 +00:00

travis: do not trigger trezor-core if not master

This commit is contained in:
matejcik 2018-05-11 16:01:11 +02:00
parent cc7c8ccb59
commit f9c20f8d2f

View File

@ -12,6 +12,11 @@ if [ "$TRAVIS_REPO_SLUG" != "$SOURCE" ]; then
exit 0;
fi
if [ "$TRAVIS_BRANCH" != "master" ]; then
echo "not triggering from non-master branch"
exit 0;
fi
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
echo "not triggering from pull requests"
exit 0;