We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4824fcc commit f592629Copy full SHA for f592629
.appveyor.yml
@@ -0,0 +1,17 @@
1
+environment:
2
+ matrix:
3
+ - TARGET: x86_64-pc-windows-msvc
4
+ - TARGET: i686-pc-windows-msvc
5
+ - TARGET: x86_64-pc-windows-gnu
6
+ - TARGET: i686-pc-windows-gnu
7
+ RUST_BACKTRACE: full
8
+install:
9
+ - curl -sSf -o rustup-init.exe https://win.rustup.rs/
10
+ - rustup-init.exe -y --default-host %TARGET%
11
+ - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
12
+ - rustc -vV
13
+ - cargo -vV
14
+build: false
15
+test_script:
16
+ - cargo build --verbose --features yaml
17
+ - cargo test --verbose --features yaml
appveyor.yml
0 commit comments