You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
553 B

stages:
- test
test stable:
image: scorpil/rust:stable
stage: test
script:
- rustc -V
- cargo -V
- cargo test
only:
- master
tags:
- docker
allow_failure: false
test beta:
image: scorpil/rust:beta
stage: test
script:
- rustc -V
- cargo -V
- cargo test
only:
- master
tags:
- docker
allow_failure: true
test nightly:
image: scorpil/rust:nightly
stage: test
script:
- rustc -V
- cargo -V
- cargo test
only:
- master
tags:
- docker
allow_failure: true