From 8215aedb5621b432044c58e4b615b749ccedff53 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Wed, 1 Dec 2021 09:33:12 -0600 Subject: [PATCH] add woodpecker pipeline --- .woodpecker.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..a5309ec --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,32 @@ +pipeline: + build-x86_64: + image: alpine + commands: + - apk add --no-cache build-base + - make check ARCH=x86_64 + when: + platform: linux/amd64 + + build-s390x: + image: alpine + commands: + - apk add --no-cache build-base + - make check ARCH=s390x + when: + platform: linux/s390x + + build-ppc64le: + image: alpine + commands: + - apk add --no-cache build-base + - make check ARCH=ppc64le + when: + platform: linux/ppc64le + + build-aarch64: + image: alpine + commands: + - apk add --no-cache build-base + - make check ARCH=aarch64 + when: + platform: linux/arm64