Make appveyor.yml more verbose, and other misc fixes.

This commit is contained in:
Dan Gohman
2018-12-14 12:46:18 -08:00
parent 81bbf8f057
commit 48f86bde82

View File

@@ -6,16 +6,14 @@ environment:
- TARGET: x86_64-pc-windows-msvc - TARGET: x86_64-pc-windows-msvc
BITS: 64 BITS: 64
install: install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs/ - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-host %TARGET% - rustup-init.exe -yv --default-host %target%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- if defined MSYS2 set PATH=C:\msys64\mingw%BITS%\bin;%PATH% - if defined MSYS2 set PATH=C:\msys64\mingw%BITS%\bin;%PATH%
- rustc -V - rustc -vV
- cargo -V - cargo -vV
- git submodule update --init --recursive
build: false build: false
test_script: test_script:
- cargo build --verbose --all - cargo build --verbose --all
- cargo test --verbose --all - cargo test --verbose --all
branches:
only:
- master