From b6aed7e4f0ef9da6d2dd5686e1254c95150aced9 Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Sat, 28 Feb 2026 16:15:37 +0100 Subject: [PATCH 1/3] Add --verbose flag for installation in the CI This will help locating problems installing the dependencies in the CI. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fafd1d5..3efa042 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: - name: Prepare for testing run: | - cpanm --installdep --notest . + cpanm --installdep --notest --verbose . - name: Release tests env: From d9feeb413f9e1d2bdcb74cc67574f57624a117c6 Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Sat, 28 Feb 2026 16:19:37 +0100 Subject: [PATCH 2/3] install libpng-dev in the CI --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3efa042..04df803 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,10 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Install libpng + run: | + apt install libpng-dev + - name: Prepare for testing run: | cpanm --installdep --notest --verbose . From 73227d93b160509a57faafce5d6f3ecb42afb687 Mon Sep 17 00:00:00 2001 From: Gabor Szabo Date: Sat, 28 Feb 2026 16:21:43 +0100 Subject: [PATCH 3/3] yes --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 04df803..ba78b7a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: - name: Install libpng run: | - apt install libpng-dev + apt install -y libpng-dev - name: Prepare for testing run: |