Delete old-travis

This commit is contained in:
Tero Frondelius
2015-06-16 23:46:35 +03:00
parent fa4fb5e35a
commit 78c4937ca0
-15
View File
@@ -1,15 +0,0 @@
language: julia
julia:
- release
- nightly
#notifications:
# email: false
#script:
# - julia -e 'Pkg.clone(pwd())'
# - julia -e 'Pkg.build("$name")'
# - if [ -f test/runtests.jl ]; then julia --check-bounds=yes --code-coverage test/runtests.jl; fi
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("JuliaFEM"); Pkg.test("JuliaFEM"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("JuliaFEM")); Pkg.add("Coverage"); using Coverage; >Coveralls.submit(Coveralls.process_folder())'