Skip to content

Commit b4b0bd7

Browse files
committed
Enable Appveyor CI once again
Appveyor just moved their build environment. Perhaps they are running on more modern hardware now. Let's try again.
1 parent 8a209f8 commit b4b0bd7

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
environment:
2+
matrix:
3+
- target: nightly-x86_64-pc-windows-msvc
4+
5+
install:
6+
# Download the Rust and Cargo installer.
7+
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:target}.msi"
8+
9+
# Install Rust and Cargo and wait for installation to finish by using Write-Output.
10+
- ps: msiexec /package "rust-${env:target}.msi" /quiet /norestart | Write-Output
11+
12+
# Pick up the new Path variable after the installer modified it.
13+
- ps: $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine")
14+
15+
# Print versions for future reference.
16+
- rustc --version
17+
- cargo --version
18+
19+
build_script:
20+
- cargo build
21+
22+
test_script:
23+
- cargo test

readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,5 @@ Convector is free software. It is licensed under the
6767
[gplv3]: https://www.gnu.org/licenses/gpl-3.0.html
6868
[interactive]: https://raw.githubusercontent.com/ruuda/convector/master/screenshots/interactive.png
6969
[accumulative]: https://raw.githubusercontent.com/ruuda/convector/master/screenshots/accumulative.png
70+
[ci-img]: https://ci.appveyor.com/api/projects/status/468h0bilnnrsrnyy?svg=true
71+
[ci]: https://ci.appveyor.com/project/ruuda/convector

0 commit comments

Comments
 (0)