Skip to content

Commit 8d7b67b

Browse files
committed
Merge pull request #45 from tkelman/appveyor
Create appveyor.yml
2 parents b108e5d + d888699 commit 8d7b67b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

appveyor.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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

0 commit comments

Comments
 (0)