diff --git a/appveyor.yml b/appveyor.yml index fb15a51..3ab996d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,5 @@ environment: + JULIA_PROJECT: "@." matrix: - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.7/julia-0.7-latest-win32.exe" - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.7/julia-0.7-latest-win64.exe" @@ -38,8 +39,7 @@ install: 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(), \"Literate\"); Pkg.build(\"Literate\")" + - C:\projects\julia\bin\julia -e "using InteractiveUtils; versioninfo(); Pkg.build()" test_script: - - C:\projects\julia\bin\julia -e "Pkg.test(\"Literate\")" + - C:\projects\julia\bin\julia -e "Pkg.test()" diff --git a/docs/make.jl b/docs/make.jl index ff0bdce..b3b7284 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,7 +1,5 @@ using Pkg -pkg"add Plots#master" -pkg"add GR#master" -pkg"add Documenter" +pkg"add Documenter Plots#master GR#master" pkg"precompile" using Documenter