20 lines
		
	
	
		
			446 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			446 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_earth.html
 | |
|       - julia/plots/nlp_test_sun.html
 | |
|     expire_in: 10 weeks
 | 
