Update appveyor script

With the help of an update to bzip2, everything should build now
This commit is contained in:
Mathijs van de Nes 2015-07-13 09:52:03 +02:00
parent 75b970cb3c
commit a15cf1946e

View file

@ -4,9 +4,8 @@ environment:
RUST_CHANNEL: stable RUST_CHANNEL: stable
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu - RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_CHANNEL: stable RUST_CHANNEL: stable
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-msvc
platform: RUST_CHANNEL: nightly
- x64
install: install:
- ps: Start-FileDownload "http://static.rust-lang.org/dist/channel-rust-${env:RUST_CHANNEL}" - ps: Start-FileDownload "http://static.rust-lang.org/dist/channel-rust-${env:RUST_CHANNEL}"
@ -14,9 +13,11 @@ install:
- ps: Start-FileDownload "http://static.rust-lang.org/dist/${env:RUST_INSTALLER}" - ps: Start-FileDownload "http://static.rust-lang.org/dist/${env:RUST_INSTALLER}"
- '%RUST_INSTALLER% /VERYSILENT /NORESTART /DIR="C:\Rust"' - '%RUST_INSTALLER% /VERYSILENT /NORESTART /DIR="C:\Rust"'
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 - call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
- 'SET PATH=%PATH%;C:\Rust\bin' - ps: Invoke-WebRequest -UserAgent wget -Uri "http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/5.1.0/threads-win32/seh/x86_64-5.1.0-release-win32-seh-rt_v4-rev0.7z/download" -OutFile mingw64.7z
- 'SET PATH=%PATH%;C:\Rust\bin\rustlib\%RUST_INSTALL_TRIPLE%\bin' - ps: 7z x -oC:\ mingw64.7z > $null
- rustc --version - ps: $env:path = "C:\mingw64\bin;C:\Rust\bin;" + $env:path
- gcc --version
- rustc --version --verbose
- cargo --version - cargo --version
build: false build: false