https://github.com/JuliaInv/jInv.jl
Raw File
Tip revision: 6652d4f4b700c80e476afe9d918da8ab85c63a4b authored by Dave Marchant on 25 August 2017, 17:52:50 UTC
Added type specification to misfitParam/gloc. Removed unused fname parameter from getGlobalToLocal.
Tip revision: 6652d4f
.travis.yml
language: julia

os:
  - osx
  - linux

julia:
  - 0.6

notifications:
  email: false

before_install:
   - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi

script:
    - julia -p 4 --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("jInv");  Pkg.test("jInv";coverage=true)'

after_success:
  - julia -e 'cd(Pkg.dir("jInv")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
  - julia -e 'Pkg.clone("https://github.com/JuliaDocs/Documenter.jl")'
  - julia -e 'cd(Pkg.dir("jInv")); include(joinpath("docs", "make.jl"))'
back to top