35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
stages:
|
|
- test
|
|
|
|
unit-test-job:
|
|
timeout: 4h
|
|
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/nlp_test_1_phase.html
|
|
- julia/plots/nlp_test_2_phase.html
|
|
- julia/plots/nlp_test_3_phase.html
|
|
- julia/plots/mbh_test_1_phase.html
|
|
- julia/plots/mbh_test_2_phase.html
|
|
- julia/plots/mbh_test_3_phase.html
|
|
- julia/plots/plot_test_mission.html
|
|
- julia/plots/plot_test_mission_guess.html
|
|
- julia/plots/plot_test_path.html
|
|
- julia/plots/plot_test_paths.html
|
|
- julia/plots/plot_test_planet_move.html
|
|
- julia/plots/plot_test_planet_no_move.html
|
|
- julia/plots/plot_test_planet_solar_system.html
|
|
- julia/test/missions/nlp_1_phase
|
|
- julia/test/missions/nlp_2_phase
|
|
- julia/test/missions/nlp_3_phase
|
|
- julia/test/missions/mbh_1_phase
|
|
- julia/test/missions/mbh_2_phase
|
|
- julia/test/missions/mbh_3_phase
|
|
expire_in: 52 weeks
|