24 lines
601 B
YAML
24 lines
601 B
YAML
stages:
|
|
- test
|
|
|
|
unit-test-job:
|
|
timeout: 2h
|
|
stage: test
|
|
script:
|
|
- apt-get update
|
|
- apt-get -y upgrade
|
|
- apt-get install -y unzip
|
|
- mkdir julia/plots
|
|
- julia --project=julia/Project.toml -E 'using Pkg; Pkg.test()'
|
|
artifacts:
|
|
paths:
|
|
- julia/plots/plot_test.html
|
|
- julia/plots/find_closest_test.html
|
|
- julia/plots/mbh_nominal.html
|
|
- julia/plots/mbh_best.html
|
|
- julia/plots/mbh_sun_initial.html
|
|
- julia/plots/mbh_sun_solved.html
|
|
- julia/plots/inner_loop_before.html
|
|
- julia/plots/inner_loop_after.html
|
|
expire_in: 1 week
|