Files
leo/.woodpecker/build.yaml

25 lines
606 B
YAML
Raw Normal View History

2025-12-14 21:29:39 +01:00
matrix:
include:
2025-12-14 21:35:57 +01:00
# - image: perl:5.36.0-slim-bullseye
# - image: perl:5.38.0-slim-bookworm
# - image: perl:5.40.0-slim-bookworm
# - image: perl:5.42.0-slim-bookworm
2025-12-14 21:29:39 +01:00
- image: perl:5.43.5-slim-bookworm
steps:
test:
when:
event: [push]
image: ${image}
commands:
- apt-get update -y
2025-12-14 21:44:49 +01:00
- apt-get install -y gcc expat
2025-12-14 21:41:45 +01:00
- cpanm -n XML::Parser || cat /root/.cpanm/work/*/build.log
2025-12-14 21:29:39 +01:00
- cpanm -n DBM::Deep
- cpanm -n IO::Socket::SSL
- cpanm -n MIME::Base64
- cpanm -n XML::Simple
- perl Makefile.PL
- make
- make test