]> git.proxmox.com Git - rustc.git/blame - src/liblibc/appveyor.yml
New upstream version 1.18.0+dfsg1
[rustc.git] / src / liblibc / appveyor.yml
CommitLineData
92a42be0
SL
1environment:
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
9install:
cc61c64b 10 - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
9e0c209e
SL
11 - rustup-init.exe -y --default-host %TARGET%
12 - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
92a42be0
SL
13 - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
14 - rustc -V
15 - cargo -V
16
17build: false
18
19test_script:
9e0c209e
SL
20 - cargo test --target %TARGET%
21 - cargo run --manifest-path libc-test/Cargo.toml --target %TARGET%
22
23cache:
24 - target
25 - C:\Users\appveyor\.cargo\registry