Skip to content

Commit

Permalink
test with julia stable & nightly as suggested by @tkelman in #2
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Nov 21, 2014
1 parent 0f2842c commit 839cfbc
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
environment:
matrix:
- JULIAVERSION: "x86/0.3/julia-0.3.0-win32.exe"
- JULIAVERSION: "x64/0.3/julia-0.3.0-win64.exe"
# Releases
- JULIAVERSION: "stable/win32"
- JULIAVERSION: "stable/win64"
# Nightlies
- JULIAVERSION: "download/win32"
- JULIAVERSION: "download/win64"

install:
# Download most recent Julia Windows binary
- ps: (new-object net.webclient).DownloadFile($("http://s3.amazonaws.com/julialang/bin/winnt/"+$env:JULIAVERSION), "C:\projects\julia-binary.exe")
- ps: (new-object net.webclient).DownloadFile($("http://status.julialang.org/"+$env:JULIAVERSION), "C:\projects\julia-binary.exe"

This comment has been minimized.

Copy link
@tkelman

tkelman Nov 21, 2014

Contributor

missing the closing paren

This comment has been minimized.

Copy link
@stevengj

stevengj Nov 21, 2014

Author Member

Thanks, fixed in 07bf98a

# Run installer silently, output to C:\projects\julia
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

Expand Down

0 comments on commit 839cfbc

Please sign in to comment.