Added GitlabCI configuration

这个提交包含在:
Phuntsok Drak-pa 2019-02-14 14:12:36 +01:00
父节点 cb9aa04812
当前提交 bcf986cb4b
共有 1 个文件被更改,包括 14 次插入0 次删除

14
.gitlab-ci.yml 普通文件
查看文件

@ -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