Lines Matching +full:windows +full:- +full:gnu +full:- +full:test
4 - v2-master
7 - v2-master
9 - stage: Testing
11 - job:
16 Windows 32-bit (MSVC):
17 image: vs2017-win2016
18 target: i686-pc-windows-msvc
19 Windows 64-bit (MSVC):
20 image: vs2017-win2016
21 target: x86_64-pc-windows-msvc
22 Windows 32-bit (MinGW):
23 image: vs2017-win2016
24 target: i686-pc-windows-gnu
25 Windows 64-bit (MinGW):
26 image: vs2017-win2016
27 target: x86_64-pc-windows-gnu
31 - checkout: self
35 - task: Cache@2
40 - task: Cache@2
45 - script: rustup default $(rust)-$(target)
47 - script: cargo test --no-default-features
48 displayName: Test without default features
51 - script: cargo test --features "yaml unstable"
52 displayName: Test with most features
55 - script: |