Skip to content

Commit de3cc06

Browse files
committed
Add EXTRA_CPAN_MODULES env var
1 parent 0d5b316 commit de3cc06

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

perl-module-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
# but that's not a big deal.
8484
- name: Install dependencies
8585
run: |
86-
cpan -M https://www.cpan.org -T .
86+
cpan -M https://www.cpan.org -T . ${{ vars.EXTRA_CPAN_MODULES }}
8787
- name: Run tests
8888
run: |
8989
perl Makefile.PL

perl-module-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# but that's not a big deal.
8181
- name: Install dependencies
8282
run: |
83-
cpanm --notest --installdeps --with-suggests --with-recommends .
83+
cpanm --notest --installdeps --with-suggests --with-recommends . ${{ vars.EXTRA_CPAN_MODULES }}
8484
# This makes the distribution and tests it, but assumes by the time we
8585
# got here, everything else was already tested.
8686
- name: Create distro

perl-module-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
# but that's not a big deal.
127127
- name: Install dependencies
128128
run: |
129-
cpanm --notest --installdeps --with-suggests --with-recommends .
129+
cpanm --notest --installdeps --with-suggests --with-recommends . ${{ vars.EXTRA_CPAN_MODULES }}
130130
- name: Show cpanm failures
131131
if: ${{ failure() }}
132132
run: |

perl-module-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- name: Install dependencies
7777
run: |
7878
cpan -M https://www.cpan.org -T .
79-
cpan -M https://www.cpan.org -T Test::Manifest
79+
cpan -M https://www.cpan.org -T Test::Manifest ${{ vars.EXTRA_CPAN_MODULES }}
8080
- name: Run tests
8181
run: |
8282
perl Makefile.PL

0 commit comments

Comments
 (0)