]> git.proxmox.com Git - rustc.git/blob - src/liblibc/appveyor.yml
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / liblibc / appveyor.yml
1 environment:
2 matrix:
3 - TARGET: x86_64-pc-windows-gnu
4 MSYS2_BITS: 64
5 - TARGET: i686-pc-windows-gnu
6 MSYS2_BITS: 32
7 - TARGET: x86_64-pc-windows-msvc
8 - TARGET: i686-pc-windows-msvc
9 install:
10 - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
11 - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
12 - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
13 - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
14 - rustc -V
15 - cargo -V
16
17 build: false
18
19 test_script:
20 - cargo test
21 - cargo run --manifest-path libc-test/Cargo.toml