Add GitLab CI

This commit is contained in:
Paul van Tilburg 2019-04-02 12:28:26 +02:00
parent 18061e094e
commit f1452aa884
1 changed files with 14 additions and 0 deletions

14
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,14 @@
# Use Rust docker image, see: https://hub.docker.com/_/rust/
image: rust:latest
# Defines stages which are to be executed
stages:
- build
# Run `cargo build` for the project with stable Rust
run-build:
stage: build
image: rust:latest
script:
- rustc --version && cargo --version
- cargo build --release --jobs 1