We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7c3d02 + 11d31c9 commit 4932df2Copy full SHA for 4932df2
appveyor.yml
@@ -13,6 +13,9 @@ environment:
13
14
# Install Rust and Cargo
15
install:
16
+ # Since rust-lang-libs is currently sharing 1 builder, only run 1 job when a
17
+ # PR is opened. Merges to master or tags will run all jobs.
18
+ - ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -gt 0 -and ($env:TARGET -ne "x86_64-pc-windows-msvc" -or $env:RUST_CHANNEL -ne "stable") ) {Exit-AppveyorBuild}
19
- ps: >-
20
If ($Env:TARGET -eq 'x86_64-pc-windows-gnu') {
21
$Env:PATH += ';C:\msys64\mingw64\bin'
0 commit comments