mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
23 lines
682 B
YAML
23 lines
682 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
OTHER_TARGET: i686-pc-windows-msvc
|
|
|
|
install:
|
|
- if NOT defined APPVEYOR_PULL_REQUEST_NUMBER if "%APPVEYOR_REPO_BRANCH%" == "master" appveyor exit
|
|
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- if defined OTHER_TARGET rustup target add %OTHER_TARGET%
|
|
- rustup component add clippy || exit 0
|
|
- rustc -V
|
|
- cargo -V
|
|
- git submodule update --init
|
|
|
|
clone_depth: 1
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --features=deny-warnings
|