We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690a4f6 commit 30cf806Copy full SHA for 30cf806
.travis.yml
@@ -82,7 +82,9 @@ env:
82
83
script:
84
- >
85
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
+ if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
86
+ echo skipping, not a full build;
87
+ elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
88
travis_retry sh -c 'git submodule deinit -f . && git submodule update --init' &&
89
src/ci/run.sh;
90
else
appveyor.yml
@@ -130,6 +130,10 @@ cache:
130
- "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
131
- "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
132
133
+branches:
134
+ only:
135
+ - auto
136
+
137
before_deploy:
138
- ps: |
139
New-Item -Path deploy -ItemType directory
0 commit comments