Browse Source

Adding a gitlab ci build configuration

develop
Drew Short 9 years ago
parent
commit
578c1bfdbe
  1. 24
      .gitlab-ci.yml

24
.gitlab-ci.yml

@ -0,0 +1,24 @@
image: jimmycuadra/rust:nightly
stages:
- build
- test
build:
stage: build
script:
- cargo build --release
only:
- master
tags:
- rust
allow_failure: false
test:
stage: test
script:
- cargo test --release
only:
- master
tags:
- rust
allow_failure: false
Loading…
Cancel
Save