https://github.com/JuliaInv/jInv.jl
Raw File
Tip revision: b15cb81c79ad882c47e819bfdcdcda85e6305a9b authored by Patrick Belliveau on 31 July 2018, 19:47:16 UTC
printProgress keyword caused problems when doing inversions with single forward problem. Fixed now.
Tip revision: b15cb81
.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