Added GitlabCI configuration

Este commit está contenido en:
Phuntsok Drak-pa 2019-02-14 14:12:36 +01:00
padre cb9aa04812
commit bcf986cb4b
Se han modificado 1 ficheros con 14 adiciones y 0 borrados

14
.gitlab-ci.yml Archivo normal
Ver fichero

@ -0,0 +1,14 @@
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose