Files
Config-General/.woodpecker/build.yaml
2025-12-09 20:59:52 +01:00

27 lines
461 B
YAML

matrix:
include:
- os: ubuntu:25.04
- os: ubuntu:24.04
- os: macos:15
steps:
build:
when:
event: [push]
image: ${os}
commands:
- apt-get update -y
- apt-get install -y libextutils-builder-perl make
- perl Makefile.PL
- make -j4
test:
when:
event: [push]
image: ${os}
commands:
- apt-get update -y
- apt-get install -y make
- make -j4 test
depends_on: [build]