From af43ac3e98b47055751399f2cb5feab723ad78ca Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 10 Dec 2025 21:22:08 +0100 Subject: [PATCH] add required mods --- .woodpecker/build.yaml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index df29bc8..b1511c5 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -1,10 +1,10 @@ matrix: include: - - image: perl:5.22.4-stretch - - 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 + # - image: perl:5.22.4-stretch + # - 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 - image: perl:5.43.5-slim-bookworm steps: @@ -13,6 +13,19 @@ steps: event: [push] image: ${image} commands: + - apt-get update -y + - apt-get install -y gcc + - cpanm -n Digest::SHA3 + - cpanm -n Crypt::PBKDF2 + - cpanm -n Crypt::Cipher::AES + - cpanm -n Crypt::CBC + - cpanm -n Digest::SHA + - cpanm -n Crypt::ECB + - cpanm -n Crypt::Twofish + - cpanm -n Data::UUID + - cpanm -n Shell + - cpanm -n File::Temp + - cpanm -n Crypt::Random - perl Makefile.PL - make - make test