Browse Source

Changing the builds to be on each rust environment

develop
Drew Short 7 years ago
parent
commit
389bc473ae
  1. 31
      .gitlab-ci.yml

31
.gitlab-ci.yml

@ -1,8 +1,8 @@
image: jimmycuadra/rust:latest
stages:
- test
test:
test stable:
image: scorpil/rust:stable
stage: test
script:
- rustc -V
@ -13,3 +13,30 @@ test:
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
Loading…
Cancel
Save