From 0c6e4fbff2523fd03cf693abaa7abfb84b4cfe20 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 24 Oct 2021 10:57:40 +0200 Subject: woodpecker: Split into two pipelines Signed-off-by: Matthias Beyer --- .woodpecker/rust-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .woodpecker/rust-ci.yml (limited to '.woodpecker/rust-ci.yml') diff --git a/.woodpecker/rust-ci.yml b/.woodpecker/rust-ci.yml new file mode 100644 index 0000000..9484493 --- /dev/null +++ b/.woodpecker/rust-ci.yml @@ -0,0 +1,20 @@ +pipeline: + check-service: + image: rust:${RUST_VERSION} + pull: true + commands: + - echo "Using rust:${RUST_VERSION} on service-${SERVICE}" + - cd service-${SERVICE} + - cargo check + when: + event: [ push, pull_request ] + +matrix: + SERVICE: + - hello + - world + - joiner + RUST_VERSION: + - latest + - 1.54.0 + -- cgit v1.2.3