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/ci.yml | 30 ------------------------------ .woodpecker/nix-ci.yml | 16 ++++++++++++++++ .woodpecker/rust-ci.yml | 20 ++++++++++++++++++++ 3 files changed, 36 insertions(+), 30 deletions(-) delete mode 100644 .woodpecker/ci.yml create mode 100644 .woodpecker/nix-ci.yml create mode 100644 .woodpecker/rust-ci.yml diff --git a/.woodpecker/ci.yml b/.woodpecker/ci.yml deleted file mode 100644 index 2e849e9..0000000 --- a/.woodpecker/ci.yml +++ /dev/null @@ -1,30 +0,0 @@ -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 ] - - nix-build: - image: nixos/nix - commands: - - nix-build ./default.nix -A ${SERVICE}Image - - nix-build-config: - image: nixos/nix - commands: - - nix-build ./default.nix -A config - - -matrix: - SERVICE: - - hello - - world - - joiner - RUST_VERSION: - - latest - - 1.54.0 diff --git a/.woodpecker/nix-ci.yml b/.woodpecker/nix-ci.yml new file mode 100644 index 0000000..7332de1 --- /dev/null +++ b/.woodpecker/nix-ci.yml @@ -0,0 +1,16 @@ +pipeline: + nix-build: + image: nixos/nix + commands: + - nix-build ./default.nix -A ${SERVICE}Image + + nix-build-config: + image: nixos/nix + commands: + - nix-build ./default.nix -A config + +matrix: + SERVICE: + - hello + - world + - joiner 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