summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.woodpecker/nix-ci.yml16
-rw-r--r--.woodpecker/rust-ci.yml20
2 files changed, 36 insertions, 0 deletions
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
+