From d2cf58a3599c9f722cbe06b9a1de38d171b37914 Mon Sep 17 00:00:00 2001 From: Timothy Legge Date: Mon, 8 May 2023 20:32:18 -0300 Subject: [PATCH] install Module::Pluggable https://github.com/Test-More/Test2-Suite/issues/270 Required until the issue is fixed in Test2::Suite Basically on 5.18.4 Module::Plugable is deprecated and prints a warning that is eventually caught by Test2::Plugin::NoWarnings and that causes the install of Test2::Plugin::NoWarnings to fail. --- .github/workflows/linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 21cdd98..410c173 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,7 +30,8 @@ jobs: - name: Install Net::SAML2 Depends run: | apt-get install libxml2 make gcc wget; - cpanm App::cpm + cpanm Module::Pluggable + cpanm App::cpm; # Sub::Name has test that fail every so many times on t/lexical.t # we ignore these test failures for now... cpm install -g --show-build-log-on-failure Sub::Name;