aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDaniel <kingdread@gmx.de>2020-05-03 16:21:27 +0200
committerDaniel <kingdread@gmx.de>2020-05-03 16:21:27 +0200
commitf1fbfc32b6856528fef1fa838103cd3030861e7e (patch)
treefeb5f0b43daaad391c34adbb20a3ec43024c7f3c /.gitlab-ci.yml
parent8cfdfcd29de395f9ee73bf3a3e5f14210a4844e6 (diff)
downloadraidgrep-f1fbfc32b6856528fef1fa838103cd3030861e7e.tar.gz
raidgrep-f1fbfc32b6856528fef1fa838103cd3030861e7e.tar.bz2
raidgrep-f1fbfc32b6856528fef1fa838103cd3030861e7e.zip
add CI
Even though there are not a lot of tests currently, it's good to get started and at least get the basic compilation/clippy errors as well.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..bc65171
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,21 @@
+image: "rust"
+
+tests:
+ before_script:
+ - rustup install nightly
+ script:
+ - cargo +nightly test
+
+format:
+ before_script:
+ - rustup install nightly
+ - rustup +nightly component add rustfmt
+ script:
+ - cargo +nightly fmt -- --check
+
+clippy:
+ before_script:
+ - rustup install nightly
+ - rustup +nightly component add clippy
+ script:
+ - if cargo +nightly clippy 2>&1 | tee /dev/stderr | egrep "^(warning|error):" >/dev/null ; then exit 1 ; else exit 0 ; fi