ash/appveyor.yml

25 lines
814 B
YAML
Raw Normal View History

2016-12-26 12:10:27 +11:00
environment:
matrix:
2018-08-03 16:45:28 +10:00
- TARGET: 1.28.0-x86_64-pc-windows
2016-12-26 12:10:27 +11:00
COMPILER: msvc
install:
- if %COMPILER%==gnu choco install -y mingw
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}-${env:COMPILER}.exe" -FileName "rust-install.exe"
- ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
- ps: $env:PATH="$env:PATH;C:\rust\bin;C:\tools\mingw64\bin"
- if %COMPILER%==gnu gcc -v
- rustc -vV
- cargo -vV
build_script:
2017-04-16 20:58:29 +10:00
- cargo build --manifest-path ash/Cargo.toml
- cargo build --manifest-path examples/Cargo.toml
2018-12-09 19:11:19 +11:00
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Uncomment this to enable building pull requests.
- master