forked from zzeroo/libmodbus-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (36 loc) · 1.02 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
# Appveyor configuration for Rust using rustup for Rust installation
# Based on the template https://github.com/starkat99/appveyor-rust
# Please validate before push https://ci.appveyor.com/tools/validate-yaml
## Operating System (VM environment) ##
# Rust needs at least Visual Studio 2013 Appveyor OS for MSVC targets.
os: Visual Studio 2015
## Build Matrix ##
environment:
matrix:
- compiler: msys2
ARCH: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
channel: stable
target: x86_64-pc-windows-gnu
- compiler: msys2
ARCH: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
channel: nightly
target: x86_64-pc-windows-gnu
# - compiler: msys2
# ARCH: x86
# MSYS2_ARCH: i686
# MSYS2_DIR: msys64
# MSYSTEM: MINGW32
# channel: stable
# target: i686-pc-windows-gnu
### Allowed failures ###
matrix:
allow_failures:
- channel: nightly
build_script:
- '%APPVEYOR_BUILD_FOLDER%\appveyor.bat'