File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments