mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
46 lines
960 B
YAML
46 lines
960 B
YAML
environment:
|
|
global:
|
|
RUST_VERSION: stable
|
|
#APPVEYOR_CACHE_SKIP_RESTORE: true
|
|
|
|
matrix:
|
|
# Stable channel
|
|
- TARGET: i686-pc-windows-msvc
|
|
CHANNEL: stable
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
CHANNEL: stable
|
|
# Beta channel
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
CHANNEL: beta
|
|
# Nightly channel
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
CHANNEL: nightly
|
|
|
|
install:
|
|
- ps: >-
|
|
$Env:PATH += ';C:\msys64\usr\bin'
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION%
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- rustc -Vv
|
|
- cargo -V
|
|
|
|
test_script:
|
|
- cargo check --verbose
|
|
- cargo test --verbose
|
|
|
|
branches:
|
|
only:
|
|
# Release tags
|
|
- /^v\d+\.\d+\.\d+.*$/
|
|
- master
|
|
|
|
cache:
|
|
- C:\Users\appveyor\.cargo\registry
|
|
|
|
notifications:
|
|
- provider: Email
|
|
on_build_success: false
|
|
|
|
# Building is done in the test phase, so we disable Appveyor's build phase.
|
|
build: false
|