Skip to content

Commit

Permalink
Added basic appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ozkriff committed May 19, 2016
1 parent 2da5d0b commit 201db38
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# See LICENSE file for copyright and license details.

platform:
- i686
- x86_64

install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-$Env:PLATFORM-pc-windows-gnu.exe" -FileName rust.exe
- cmd: rust.exe /VERYSILENT /NORESTART /DIR=C:\Rust
- ps: >-
if ($Env:PLATFORM -eq "i686") {
$Env:MINGW = "C:\mingw"
} else {
Start-FileDownload "http://libgd.blob.core.windows.net/mingw/mingw-w64-dgn-x86_64-20141001.7z" -FileName mingw-w64.7z;
7z x -oC:\ mingw-w64.7z | Out-Null;
$Env:MINGW = "C:\mingw64"
}
- cmd: SET PATH=%MINGW%\bin;C:\Rust\bin;%PATH%
- rustc -V
- cargo -V

build_script:
- cargo build

test: false

# vim: set tabstop=4 shiftwidth=4 softtabstop=4 expandtab:

0 comments on commit 201db38

Please sign in to comment.