Skip to content

Commit

Permalink
Add AppVeyor configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahao committed Aug 27, 2014
1 parent 9eb1e73 commit 07d9659
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
environment:
matrix:
- JULIAVERSION: "win32"
- JULIAVERSION: "win64"

install:
# Download most recent Julia Windows binary
- ps: (new-object net.webclient).DownloadFile($("http://status.julialang.org/download/"+$env:JULIAVERSION), "C:\projects\julia-binary.exe")
# Run installer silently, output to C:\projects\julia
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo(); Pkg.init(); Pkg.clone(pwd())"
test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"IterativeSolvers\")"

0 comments on commit 07d9659

Please sign in to comment.