diff options
Diffstat (limited to 'third_party/rust/bytemuck/appveyor.yml')
-rw-r--r-- | third_party/rust/bytemuck/appveyor.yml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/third_party/rust/bytemuck/appveyor.yml b/third_party/rust/bytemuck/appveyor.yml new file mode 100644 index 0000000000..d6c4f5e921 --- /dev/null +++ b/third_party/rust/bytemuck/appveyor.yml @@ -0,0 +1,45 @@ + +os: Visual Studio 2015 + +branches: + only: + - staging + - trying + - master + - dev + +matrix: + fast_finish: true + +environment: + matrix: + # Stable + - channel: 1.34.0 + target: i686-pc-windows-msvc + - channel: 1.34.0 + target: i686-pc-windows-gnu + - channel: 1.34.0 + target: x86_64-pc-windows-msvc + - channel: 1.34.0 + target: x86_64-pc-windows-gnu + # Beta and Nightly are checked by TravisCI since builds there run in + # parallel. + +install: + - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe + - rustup-init -y --default-toolchain %channel% --default-host %target% + - set PATH=%PATH%;%USERPROFILE%\.cargo\bin + - rustup component add rustfmt + - rustup component add clippy + - rustc -vV + - cargo -vV + +# On advice of retep we skip the "build" script phase +build: false + +test_script: + - cargo fmt -- --check + - cargo clippy + - cargo test --no-default-features + - cargo test + #- cargo test --all-features |