-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathappveyor.yml
44 lines (36 loc) · 991 Bytes
/
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
43
44
platform:
- x64
environment:
matrix:
- RUST_VERSION: stable
PLATFORM_TARGET: x86_64
PLATFORM_VS: x64
install:
# Install Rust.
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -yv --default-toolchain %RUST_VERSION% --default-host x86_64-pc-windows-msvc
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
- rustc -vV
- cargo -vV
build_script:
- cargo build
test_script:
- cargo test
before_deploy:
- ps: .ci\before_deploy.ps1
artifacts:
- path: rust-covfix-win-$(PLATFORM_TARGET).zip
deploy:
provider: GitHub
artifact: rust-covfix-win-$(PLATFORM_TARGET).zip
description: 'Automatically deployed release artifacts'
auth_token:
secure: 85INcXiqUByZKzxbMTo7EqxBSCSpCQIrIG4FCg3np8eR3l6rgRm92OF8LJBrLKX1
on:
RUST_VERSION: stable
appveyor_repo_tag: true
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false