Browse Source

fix

pull/14/head
Fredrik Ekre 8 years ago
parent
commit
34b5f26e92
  1. 6
      appveyor.yml
  2. 4
      docs/make.jl

6
appveyor.yml

@ -1,4 +1,5 @@
environment: environment:
JULIA_PROJECT: "@."
matrix: 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/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" - 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: build_script:
# Need to convert from shallow to complete for Pkg.clone to work # Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow) - IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo(); - C:\projects\julia\bin\julia -e "using InteractiveUtils; versioninfo(); Pkg.build()"
Pkg.clone(pwd(), \"Literate\"); Pkg.build(\"Literate\")"
test_script: test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"Literate\")" - C:\projects\julia\bin\julia -e "Pkg.test()"

4
docs/make.jl

@ -1,7 +1,5 @@
using Pkg using Pkg
pkg"add Plots#master" pkg"add Documenter Plots#master GR#master"
pkg"add GR#master"
pkg"add Documenter"
pkg"precompile" pkg"precompile"
using Documenter using Documenter

Loading…
Cancel
Save