Skip to content

Commit 30cf806

Browse files
committed
Revert "Enable builds against prs"
This reverts commit 5599636.
1 parent 690a4f6 commit 30cf806

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ env:
8282

8383
script:
8484
- >
85-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
85+
if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
86+
echo skipping, not a full build;
87+
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
8688
travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
8789
src/ci/run.sh;
8890
else

appveyor.yml

+4
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ cache:
130130
- "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
131131
- "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
132132

133+
branches:
134+
only:
135+
- auto
136+
133137
before_deploy:
134138
- ps: |
135139
New-Item -Path deploy -ItemType directory

0 commit comments

Comments
 (0)