Co-authored-by: Danny Browning <danny.browning@protectwise.com> Co-authored-by: Daniel Eades <danieleades@hotmail.com>
20 lines
624 B
YAML
20 lines
624 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
- TARGET: i686-pc-windows-msvc
|
|
- TARGET: x86_64-pc-windows-gnu
|
|
MINGW_PATH: 'C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin'
|
|
- TARGET: i686-pc-windows-gnu
|
|
MINGW_PATH: 'C:\MinGW\bin'
|
|
install:
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
- rustup-init.exe -y --default-toolchain nightly --default-host %TARGET%
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- if defined MINGW_PATH set PATH=%PATH%;%MINGW_PATH%
|
|
- rustc -vV
|
|
- cargo -vV
|
|
build: false
|
|
test_script:
|
|
- cargo test -- --test-threads=1
|
|
skip_branch_with_pr: true
|