Skip to content

Commit 301724f

Browse files
committed
Add AppVeyor config
Note, I've removed Debug-CI as it was the configuration for non-integration tests. Since the integration tests are gone, we so is the Debug-CI.
1 parent 89f8197 commit 301724f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

appveyor.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
version: '{build}'
2+
branches:
3+
only:
4+
- master
5+
skip_tags: true
6+
configuration:
7+
- Release
8+
install:
9+
- cmd: >-
10+
powershell Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-msvc.exe"
11+
12+
rust-nightly-i686-pc-windows-msvc.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
13+
14+
SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
15+
16+
rustc -Vv
17+
18+
cargo -Vv
19+
before_build:
20+
- cmd: >-
21+
git submodule update --init --recursive
22+
23+
nuget restore
24+
build:
25+
project: VisualRust.sln
26+
parallel: true
27+
verbosity: normal
28+
artifacts:
29+
- path: VisualRust.Setup\bin\Release\*.msi
30+
name: VisualRust.msi

0 commit comments

Comments
 (0)