-
Notifications
You must be signed in to change notification settings - Fork 46
/
appveyor.yml
32 lines (26 loc) · 916 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
os: Visual Studio 2019
# Disable msbuild
build: false
skip_branch_with_pr: true
environment:
PATH: c:\OpenSSL-v111-Win64\bin;%PATH%
OPENSSL_ROOT_DIR: c:\OpenSSL-v111-Win64
OPENSSL_DIR: c:\OpenSSL-v111-Win64
RUST_LOG: info
RUST_BACKTRACE: 1
install:
- echo Installing with SSL on %OPENSSL_DIR%
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-host=x86_64-pc-windows-msvc
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\stable-x86_64-pc-windows-msvc\bin
- del rustup-init.exe
- rustc -vV
- cargo -vV
- rustup component add llvm-tools-preview --toolchain stable-x86_64-pc-windows-msvc
- cargo install cargo-llvm-cov
- cargo install cargo-nextest
test_script:
- cargo llvm-cov nextest --html
artifacts:
- path: target/llvm-cov/html/index.html
name: Code Coverage Report