diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml new file mode 100644 index 0000000..2043cc7 --- /dev/null +++ b/.woodpecker/build.yaml @@ -0,0 +1,16 @@ +matrix: + platform: + - linux/amd64 + +labels: + platform: ${platform} + +steps: + build: + when: + event: [push] + image: alpine:latest + commands: + - apk add --no-cache make bash binutils gcc + - make +