forked from crate-ci/committed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
42 lines (35 loc) · 1.14 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
environment:
global:
RUST_VERSION: stable
#APPVEYOR_CACHE_SKIP_RESTORE: true
matrix:
# Stable channel
- TARGET: x86_64-pc-windows-msvc
CHANNEL: stable
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:
- git log --graph --oneline
- echo "APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH=%APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH%"
- echo "APPVEYOR_PULL_REQUEST_HEAD_COMMIT=%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%"
- echo "APPVEYOR_REPO_COMMIT =%APPVEYOR_REPO_COMMIT %"
# The extra verbosity is to help verify the example we're giving works and doesn't need to be copied
- IF not "%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%"=="" (cargo run -- HEAD~..HEAD^^2 --no-merge-commit -vvvv)
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