Skip to content

Commit

Permalink
really update WIN CI tests
Browse files Browse the repository at this point in the history
	modified:   appveyor.yml
  • Loading branch information
jlapeyre committed Apr 12, 2018
1 parent 826d3ba commit 51d45f8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.5-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.5-latest-win64.exe"
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"

Expand All @@ -17,9 +17,10 @@ notifications:
on_build_status_changed: false

install:
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
# Download most recent Julia Windows binary
- ps: (new-object net.webclient).DownloadFile(
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
$env:JULIA_URL,
"C:\projects\julia-binary.exe")
# Run installer silently, output to C:\projects\julia
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
Expand All @@ -28,7 +29,7 @@ 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.clone(pwd(), \"EmpiricalCDFs\"); Pkg.build(\"EmpiricalCDFs\")"
Pkg.clone(pwd(), \"OnlineStats\"); Pkg.checkout(\"OnlineStatsBase\"); Pkg.build(\"OnlineStats\");"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"EmpiricalCDFs\")"

0 comments on commit 51d45f8

Please sign in to comment.