File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ environment :
2
+ matrix :
3
+ # Releases
4
+ - JULIAVERSION : " stable/win32"
5
+ - JULIAVERSION : " stable/win64"
6
+ # Nightlies
7
+ - JULIAVERSION : " download/win32"
8
+ - JULIAVERSION : " download/win64"
9
+
10
+ install :
11
+ # Download most recent Julia Windows binary
12
+ - ps : (new-object net.webclient).DownloadFile($("http://status.julialang.org/"+$env:JULIAVERSION), "C:\projects\julia-binary.exe")
13
+ # Run installer silently, output to C:\projects\julia
14
+ - C:\projects\julia-binary.exe /S /D=C:\projects\julia
15
+
16
+ build_script :
17
+ # Need to convert from shallow to complete for Pkg.clone to work
18
+ - IF EXIST .git\shallow (git fetch --unshallow)
19
+ - C:\projects\julia\bin\julia -e "versioninfo(); Pkg.init(); Pkg.clone(pwd(), \"SQLite\"); Pkg.build(\"SQLite\")"
20
+
21
+ test_script :
22
+ - C:\projects\julia\bin\julia test\runtests.jl
You can’t perform that action at this time.
0 commit comments