Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force install Module::Pluggable so CI can run #1719

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Install dependencies
run: |
perl -v
cpanm --notest --force Module::Pluggable
dzil authordeps --missing | cpanm --notest
dzil listdeps --author --missing | cpanm --notest

Expand Down Expand Up @@ -111,6 +112,7 @@ jobs:
- name: Install Dancer
run: |
perl -v
cpanm --notest --force Module::Pluggable
cpanm Dancer2-*.tar.gz
perl -MDancer2 -e 'print "$Dancer2::VERSION\n"'

Expand Down Expand Up @@ -138,6 +140,7 @@ jobs:
- name: Install Dancer
run: |
perl -v
cpanm --notest --force Module::Pluggable
cpanm Dancer2-*.tar.gz
perl -MDancer2 -e 'print "$Dancer2::VERSION\n"'

Expand Down Expand Up @@ -189,6 +192,8 @@ jobs:
run: |
perl -v

cpanm --notest --force Module::Pluggable

# Unclear why Test::TCP fails on GitHub Actions on Windows, but this seems to be related:
# https://github.com/tokuhirom/Test-TCP/pull/99
cpanm --notest Test::TCP
Expand All @@ -204,6 +209,7 @@ jobs:
- name: Install Dancer on Linux and OSX
if: ${{ ! startsWith( matrix.runner, 'windows-' ) }}
run: |
cpanm --notest --force Module::Pluggable
cpanm Dancer2-*.tar.gz
perl -MDancer2 -e 'print qq{$Dancer2::VERSION\n}'

Loading