]> git.proxmox.com Git - rustc.git/blame - src/liblibc/appveyor.yml
New upstream version 1.21.0+dfsg1
[rustc.git] / src / liblibc / appveyor.yml
CommitLineData
92a42be0 1environment:
3b2f2976
XL
2 # When this was added there were revocation check failures when using the
3 # libcurl backend as libcurl checks by default, but rustup doesn't provide the
4 # switch to turn this off. Switch to Hyper which looks to not check for
5 # revocation by default like libcurl does.
6 RUSTUP_USE_HYPER: 1
7 CARGO_HTTP_CHECK_REVOKE: false
92a42be0
SL
8 matrix:
9 - TARGET: x86_64-pc-windows-gnu
10 MSYS2_BITS: 64
11 - TARGET: i686-pc-windows-gnu
12 MSYS2_BITS: 32
13 - TARGET: x86_64-pc-windows-msvc
14 - TARGET: i686-pc-windows-msvc
15install:
7cac9316 16 - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
9e0c209e
SL
17 - rustup-init.exe -y --default-host %TARGET%
18 - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
92a42be0
SL
19 - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
20 - rustc -V
21 - cargo -V
22
23build: false
24
25test_script:
9e0c209e 26 - cargo test --target %TARGET%
3b2f2976 27 - cargo test --manifest-path libc-test/Cargo.toml --target %TARGET%
9e0c209e
SL
28
29cache:
30 - target
31 - C:\Users\appveyor\.cargo\registry