add woodpecker pipeline

master
Ariadne Conill 2021-12-01 09:33:12 -06:00
parent 8efa9e8b85
commit 8215aedb56
1 changed files with 32 additions and 0 deletions

32
.woodpecker.yml Normal file
View File

@ -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