tIncrease Julia version on appveyor - Granular.jl - Julia package for granular dynamics simulation
(HTM) git clone git://src.adamsgaard.dk/Granular.jl
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 267a7633ffdaffb82f48398ae7fa41dd87d41afa
(DIR) parent 8ce80d28d0c181205aa5674159f7e8a88caa01d6
(HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Sun, 12 Aug 2018 16:25:09 +0200
Increase Julia version on appveyor
Diffstat:
M appveyor.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/appveyor.yml b/appveyor.yml
t@@ -1,6 +1,6 @@
environment:
matrix:
- - JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
+ - JULIAVERSION: "julialang/bin/winnt/x64/1.0/julia-1.0-latest-win64.exe"
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
matrix:
t@@ -27,13 +27,13 @@ install:
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
before_build:
- - C:\projects\julia\bin\julia -e "versioninfo(); Pkg.add(\"NetCDF\")"
+ - C:\projects\julia\bin\julia -e "versioninfo(); import Pkg; Pkg.add(\"NetCDF\")"
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(), \"Granular\"); Pkg.build(\"Granular\")"
+ import Pkg; Pkg.clone(pwd(), \"Granular\"); Pkg.build(\"Granular\")"
test_script:
- - C:\projects\julia\bin\julia -e "Pkg.test(\"Granular\")"
+ - C:\projects\julia\bin\julia -e "import Pkg; Pkg.test(\"Granular\")"