diff --git a/.travis.yml b/.travis.yml index 0e6a5dd..bc251de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,16 @@ os: - osx julia: - 0.6 + - nightly notifications: email: false # uncomment the following lines to override the default test script script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi + - julia -e 'Pkg.clone("https://github.com/helgee/Convertible.jl.git")' + - julia -e 'Pkg.clone("https://github.com/helgee/RemoteFiles.jl.git")' + - julia -e 'Pkg.clone("https://github.com/helgee/OptionalData.jl.git")' + - julia -e 'Pkg.clone("https://github.com/helgee/EarthOrientation.jl.git")' + - julia -e 'Pkg.clone("https://github.com/JuliaAstrodynamics/AstronomicalTime.jl.git")' - julia -e 'Pkg.clone("https://github.com/JuliaAstrodynamics/AstroDynBase.jl.git")' - julia -e 'Pkg.clone(pwd()); Pkg.build("JPLEphemeris"); Pkg.test("JPLEphemeris"; coverage=true)' diff --git a/README.md b/README.md index 2792e11..debaf92 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ JPLEphemeris.jl =============== [![Travis Status](https://travis-ci.org/JuliaAstrodynamics/JPLEphemeris.jl.png)](https://travis-ci.org/JuliaAstrodynamics/JPLEphemeris.jl) -[![AppVeyor status](https://ci.appveyor.com/api/projects/status/7pt2vy8wulix06jk?svg=true)](https://ci.appveyor.com/project/helgee/jplephemeris-jl) -[![PkgEval v4](http://pkg.julialang.org/badges/JPLEphemeris_0.4.svg)](http://pkg.julialang.org/?pkg=JPLEphemeris) +[![Build status](https://ci.appveyor.com/api/projects/status/2d9y5mcek1qxggg0?svg=true)](https://ci.appveyor.com/project/JuliaAstrodynamics/jplephemeris-jl) [![PkgEval v5](http://pkg.julialang.org/badges/JPLEphemeris_0.5.svg)](http://pkg.julialang.org/?pkg=JPLEphemeris) The [JPL Development Ephemerides][jpl] are the results of simulations of the Solar System used for spacecraft navigation and astronomical purposes. They are published as [SPK kernel files][spk] which contain sets of Chebyshev polynomial coefficients with which the position and velocity of the Solar System's planets can be interpolated with high precision for all dates covered by the ephemeris. diff --git a/appveyor.yml b/appveyor.yml index afd9f56..7daa14f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,6 +25,11 @@ 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 "Pkg.clone(\"https://github.com/helgee/Convertible.jl.git\")" + - C:\projects\julia\bin\julia -e "Pkg.clone(\"https://github.com/helgee/RemoteFiles.jl.git\")" + - C:\projects\julia\bin\julia -e "Pkg.clone(\"https://github.com/helgee/OptionalData.jl.git\")" + - C:\projects\julia\bin\julia -e "Pkg.clone(\"https://github.com/helgee/EarthOrientation.jl.git\")" + - C:\projects\julia\bin\julia -e "Pkg.clone(\"https://github.com/JuliaAstrodynamics/AstronomicalTime.jl.git\")" - C:\projects\julia\bin\julia -e "Pkg.clone(\"https://github.com/JuliaAstrodynamics/AstroDynBase.jl.git\")" - C:\projects\julia\bin\julia -e "versioninfo(); Pkg.clone(pwd(), \"JPLEphemeris\"); Pkg.build(\"JPLEphemeris\")"