Skip to content

Commit

Permalink
Fix CI settings
Browse files Browse the repository at this point in the history
  • Loading branch information
helgee committed Mar 24, 2017
1 parent 98e42c0 commit 803b60e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Expand Up @@ -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)'
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions appveyor.yml
Expand Up @@ -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\")"
Expand Down

0 comments on commit 803b60e

Please sign in to comment.