Files
Config-General/.woodpecker/build.yaml

27 lines
461 B
YAML
Raw Normal View History

2025-12-09 20:44:10 +01:00
matrix:
include:
- os: ubuntu:25.04
- os: ubuntu:24.04
2025-12-09 20:59:52 +01:00
- os: macos:15
2025-12-09 20:44:10 +01:00
steps:
build:
when:
event: [push]
image: ${os}
commands:
2025-12-09 20:59:52 +01:00
- apt-get update -y
- apt-get install -y libextutils-builder-perl make
2025-12-09 20:44:10 +01:00
- perl Makefile.PL
- make -j4
2025-12-09 20:59:52 +01:00
test:
when:
event: [push]
image: ${os}
commands:
- apt-get update -y
- apt-get install -y make
2025-12-09 20:52:20 +01:00
- make -j4 test
2025-12-09 20:59:52 +01:00
depends_on: [build]