]> git.proxmox.com Git - cargo.git/blob - vendor/libc-0.2.31/appveyor.yml
New upstream version 0.23.0
[cargo.git] / vendor / libc-0.2.31 / appveyor.yml
1 environment:
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
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
15 install:
16 - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
17 - rustup-init.exe -y --default-host %TARGET%
18 - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
19 - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
20 - rustc -V
21 - cargo -V
22
23 build: false
24
25 test_script:
26 - cargo test --target %TARGET%
27 - cargo test --manifest-path libc-test/Cargo.toml --target %TARGET%
28
29 cache:
30 - target
31 - C:\Users\appveyor\.cargo\registry