From f1fbfc32b6856528fef1fa838103cd3030861e7e Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 3 May 2020 16:21:27 +0200 Subject: 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. --- .gitlab-ci.yml | 21 +++++++++++++++++++++ README.md | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 .gitlab-ci.yml 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 diff --git a/README.md b/README.md index 7b0ad9c..27bab4a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ raidgrep ======== +[![CI status](https://img.shields.io/gitlab/pipeline/dunj3/raidgrep/master)](https://gitlab.com/dunj3/raidgrep) + A tool for searching your local Guild Wars 2/arcdps raid & fractal log files. Building -- cgit v1.2.3