Bug 1687945 [wpt PR 27273] - [resources] Fix conftest.py for pytest>6, a=testonly
[gecko.git] / third_party / rust / ringbuf / appveyor.yml
blob91026af6d22605579a7365e148b75c3fc999d808
1 os: Visual Studio 2015
3 environment:
4   matrix:
5     - channel: stable
6       target: x86_64-pc-windows-msvc
7     - channel: stable
8       target: i686-pc-windows-msvc
9     - channel: beta
10       target: x86_64-pc-windows-msvc
11     - channel: beta
12       target: i686-pc-windows-msvc
13     - channel: nightly
14       target: x86_64-pc-windows-msvc
15       #cargoflags: --features "unstable"
16     - channel: nightly
17       target: i686-pc-windows-msvc
18       #cargoflags: --features "unstable"
20     - channel: stable
21       target: x86_64-pc-windows-gnu
22     - channel: stable
23       target: i686-pc-windows-gnu
24     - channel: beta
25       target: x86_64-pc-windows-gnu
26     - channel: beta
27       target: i686-pc-windows-gnu
28     - channel: nightly
29       target: x86_64-pc-windows-gnu
30       #cargoflags: --features "unstable"
31     - channel: nightly
32       target: i686-pc-windows-gnu
33       #cargoflags: --features "unstable"
35 matrix:
36   allow_failures:
37     - channel: nightly
39 install:
40   - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
41   - rustup-init -yv --default-toolchain %channel% --default-host %target%
42   - set PATH=%PATH%;%USERPROFILE%\.cargo\bin
43   - rustc -vV
44   - cargo -vV
46 build: false
48 test_script:
49 - cargo test --verbose %cargoflags%
50 - bash -c "! rustc -V | grep nightly || cargo bench --features benchmark --verbose %cargoflags%"