We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7158cf3 commit 5b2fe2cCopy full SHA for 5b2fe2c
appveyor.yml
@@ -24,7 +24,7 @@ install:
24
- curl -sSf -o rustup-init.exe https://dev-static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe
25
- rustup-init.exe -y
26
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
27
- - rustup default nightly-2016-05-10-x86_64-pc-windows-msvc
+ - rustup default stable-x86_64-pc-windows-msvc
28
29
# Install the target we're compiling for
30
- if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET%
@@ -56,10 +56,11 @@ test_script:
56
- ps: |
57
if($env:BUILD_MSI) {
58
cd src\rustup-win-installer
59
- cargo build --release
+ cargo build --release --target %TARGET%
60
cd msi
61
.\build.ps1
62
cd ..\..\..
63
+ if($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
64
}
65
66
notifications:
0 commit comments