forked from hid-io/hid-io-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
49 lines (44 loc) · 1.2 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# appveyor integration for the hid-io device daemon
# Select environments
# NOTE: x86_64-pc-windows-gnu isn't supported (due to hidapi)
environment:
matrix:
# stable
- TARGET: x86_64-pc-windows-msvc
CHANNEL: stable
- TARGET: i686-pc-windows-msvc
CHANNEL: stable
- TARGET: i686-pc-windows-gnu
CHANNEL: stable
MSYS_BITS: 32
# min-version
- TARGET: x86_64-pc-windows-msvc
CHANNEL: 1.17.0
- TARGET: i686-pc-windows-msvc
CHANNEL: 1.17.0
- TARGET: i686-pc-windows-gnu
CHANNEL: 1.17.0
MSYS_BITS: 32
# beta
- TARGET: x86_64-pc-windows-msvc
CHANNEL: beta
- TARGET: i686-pc-windows-msvc
CHANNEL: beta
- TARGET: i686-pc-windows-gnu
CHANNEL: beta
MSYS_BITS: 32
# environment variables
RUST_BACKTRACE: full
# Setup rust compiler
install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %CHANNEL%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- if defined MSYS_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin
- rustc -Vv
- cargo -Vv
build: false
# Build commands
test_script:
- cargo build --verbose --color=always
- cargo test --verbose --color=always