summary refs log tree commit diff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2017-03-10 22:20:00 +0000
committerBrian Anderson <banderson@mozilla.com>2017-03-10 22:20:00 +0000
commit30cf806ef8881c41821fbd43e5cf3699c5290c16 (patch)
tree87818e031b3650133ae5ca9105c9bd3c11981c8f /.travis.yml
parent690a4f62f7d2e27d4b050ad90419f8da01bd928f (diff)
downloadrust-1.16.0.tar.gz
rust-1.16.0.zip
Revert "Enable builds against prs" 1.16.0
This reverts commit 5599636b21d3705dc695fc2c7945ee4dc942dec0.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index b6d1a9060a4..88bd901e6b3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -82,7 +82,9 @@ env:
 
 script:
   - >
-      if [ "$TRAVIS_OS_NAME" = "osx" ]; then
+      if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
+          echo skipping, not a full build;
+      elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
           travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
           src/ci/run.sh;
       else