+woodpecker

This commit is contained in:
2025-12-09 20:44:10 +01:00
parent 1c27e5e8ef
commit abad53b84e

24
.woodpecker/build.yaml Normal file
View File

@@ -0,0 +1,24 @@
matrix:
include:
- os: ubuntu:25.04
- os: ubuntu:24.04
labels:
platform: ${platform}
steps:
build:
when:
event: [push]
image: ${os}
commands:
- perl Makefile.PL
- make -j4
test:
when:
event: [push]
image: ${os}
commands:
- make test
depends_on: [build]