Add GitLab CI builds.
This commit is contained in:
		
							parent
							
								
									ba5d7c3edd
								
							
						
					
					
						commit
						b02bb063b9
					
				| 
						 | 
				
			
			@ -0,0 +1,17 @@
 | 
			
		|||
stages:
 | 
			
		||||
  - build
 | 
			
		||||
 | 
			
		||||
rust-latest:
 | 
			
		||||
  stage: build
 | 
			
		||||
  image: rust:latest
 | 
			
		||||
  script:
 | 
			
		||||
    - cargo build --verbose
 | 
			
		||||
    - cargo test --verbose
 | 
			
		||||
 | 
			
		||||
rust-nightly:
 | 
			
		||||
  stage: build
 | 
			
		||||
  image: rustlang/rust:nightly
 | 
			
		||||
  script:
 | 
			
		||||
    - cargo build --verbose
 | 
			
		||||
    - cargo test --verbose
 | 
			
		||||
  allow_failure: true
 | 
			
		||||
		Loading…
	
		Reference in New Issue