mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
Merge pull request #457 from tomaka/appveyor
Update the appveyor file for 64bits builds
This commit is contained in:
commit
b72ac990e6
17
appveyor.yml
17
appveyor.yml
|
@ -1,11 +1,20 @@
|
||||||
install:
|
install:
|
||||||
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
|
- ps: |
|
||||||
- rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
if ($env:PLATFORM -eq "x86") {
|
||||||
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
|
Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-i686-pc-windows-gnu.exe' -FileName rust.exe
|
||||||
- rustc -V
|
} else {
|
||||||
|
Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.exe' -FileName rust.exe
|
||||||
|
}
|
||||||
|
- rust.exe /VERYSILENT /NORESTART /DIR="C:\Program Files\Rust"
|
||||||
|
- SET PATH=%PATH%;C:\Program Files\Rust\bin
|
||||||
|
- rustc -vV
|
||||||
- cargo -V
|
- cargo -V
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
|
platform:
|
||||||
|
- x86
|
||||||
|
- x64
|
||||||
|
|
||||||
build: false
|
build: false
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
|
|
Loading…
Reference in a new issue