mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-06 04:21:33 +00:00
16 lines
455 B
YAML
16 lines
455 B
YAML
language: julia
|
|
os:
|
|
- linux
|
|
julia:
|
|
- release
|
|
- nightly
|
|
notifications:
|
|
email: false
|
|
script:
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
|
- julia -e 'Pkg.init(); Pkg.clone(pwd()); Pkg.build("JuliaFEM"); Pkg.test("JuliaFEM"; coverage=true)'
|
|
- julia -e 'Pkg.init(); println(ENV["REPO_TOKEN"])'
|
|
after_success:
|
|
- julia -e 'cd(Pkg.dir("JuliaFEM")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
|
|
|