diff --git a/script/cibuild b/script/cibuild index 7796b3b..541a9d4 100755 --- a/script/cibuild +++ b/script/cibuild @@ -1,4 +1,6 @@ #!/bin/sh -script/test -script/remote-sync +case "$TRAVIS_EVENT_TYPE" in + cron|pr ) script/remote-sync;; + * ) script/test;; +esac