Files
thesis/.gitlab-ci.yml

19 lines
402 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_earth.html
- julia/plots/plot_test_sun.html
- julia/plots/nlp_test.html
expire_in: 10 weeks