mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-12 06:22:00 +00:00
16 lines
576 B
Plaintext
16 lines
576 B
Plaintext
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())'
|