aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-04 06:50:30 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-04 06:50:30 -0400
commit99903cde3295f938a2d0c55e3ac75895846c7324 (patch)
tree1d2e07873a2350d384d731c0d919fda702e338d9 /.gitlab-ci.yml
parent711ee98bddd20fc34e7732cc5523df3fb8202809 (diff)
downloadteleterm-99903cde3295f938a2d0c55e3ac75895846c7324.tar.gz
teleterm-99903cde3295f938a2d0c55e3ac75895846c7324.zip
add gitlab ci
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..a336098
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+stages:
+ - build
+
+rust-latest:
+ stage: build
+ image: rust:latest
+ script:
+ - cargo build --verbose
+ - cargo test --verbose
+
+rust-nightly:
+ stage: build
+ image: rustlang/rust:nightly
+ script:
+ - cargo build --verbose
+ - cargo test --verbose
+ allow_failure: true