-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from atoomic/perl-versions
Adjust testsuite for perl-versions
- Loading branch information
Showing
1 changed file
with
26 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: perl -V | ||
- name: Makefile.PL | ||
run: perl -I$(pwd) Makefile.PL | ||
|
@@ -35,9 +35,23 @@ jobs: | |
## Test multiple versions of Perl using perl-tester | ||
## | ||
|
||
perl-versions: | ||
runs-on: ubuntu-latest | ||
name: List Perl versions | ||
outputs: | ||
perl-versions: ${{ steps.action.outputs.perl-versions }} | ||
steps: | ||
- id: action | ||
uses: perl-actions/perl-versions@v1 | ||
with: | ||
since-perl: v5.8 | ||
with-devel: true | ||
|
||
linux: | ||
name: "linux ${{ matrix.perl-version }}" | ||
needs: [ubuntu] | ||
needs: | ||
- ubuntu | ||
- perl-versions | ||
env: | ||
PERL_USE_UNSAFE_INC: 0 | ||
AUTHOR_TESTING: 1 | ||
|
@@ -49,125 +63,35 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
perl-version: | ||
[ | ||
"perl-tester:5.38", | ||
"perl-tester:5.36", | ||
"perl-tester:5.34", | ||
"perl-tester:5.32", | ||
"perl-tester:5.30", | ||
"perl-tester:5.28", | ||
"perl-tester:5.26", | ||
"perl-tester:5.24", | ||
"perl-tester:5.22", | ||
"perl-tester:5.20", | ||
"perl-tester:5.18", | ||
"perl-tester:5.16", | ||
"perl-tester:5.14", | ||
"perl-tester:5.12", | ||
"perl-tester:5.10", | ||
"perl-tester:5.8", | ||
"perl:5.6", | ||
] | ||
perl-version: ${{ fromJson (needs.perl-versions.outputs.perl-versions) }} | ||
|
||
container: | ||
image: perldocker/${{ matrix.perl-version }} | ||
container: perldocker/perl-tester:${{ matrix.perl-version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: perl -V | ||
- name: Makefile.PL | ||
run: perl -I$(pwd) Makefile.PL | ||
- run: make test | ||
|
||
## | ||
## Testing on macOS | ||
## | ||
|
||
macOS: | ||
needs: [ubuntu, linux] | ||
perl-56: | ||
name: "Perl 5.6" | ||
needs: [ubuntu] | ||
env: | ||
PERL_USE_UNSAFE_INC: 0 | ||
AUTHOR_TESTING: 1 | ||
AUTOMATED_TESTING: 1 | ||
RELEASE_TESTING: 1 | ||
|
||
runs-on: macOS-latest | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
perl-version: [latest] | ||
container: | ||
image: perldocker/perl:5.6 | ||
|
||
steps: | ||
# cannot use v4 with that container | ||
- uses: actions/checkout@v3 | ||
- run: perl -V | ||
- name: Makefile.PL | ||
run: perl -I$(pwd) Makefile.PL | ||
- run: make test | ||
|
||
## | ||
## Testing on windows | ||
## | ||
|
||
windows: | ||
needs: [ubuntu, linux] | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Perl | ||
run: | | ||
choco install strawberryperl | ||
echo 'C:\strawberry\c\bin' >> $GITHUB_PATH | ||
echo 'C:\strawberry\perl\site\bin' >> $GITHUB_PATH | ||
echo 'C:\strawberry\perl\bin' >> $GITHUB_PATH | ||
- run: perl -V | ||
- run: perl Makefile.PL | ||
- run: make | ||
- name: Run Tests | ||
run: make test | ||
env: | ||
AUTHOR_TESTING: 1 | ||
RELEASE_TESTING: 1 | ||
|
||
## | ||
## Testing on windows: using multiple Perl versions | ||
## | ||
|
||
# windows: | ||
# name: windows Perl v${{ matrix.perl-version }} | ||
# needs: [ubuntu, linux] | ||
# runs-on: ${{ matrix.os }} | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# os: ["windows-latest"] | ||
# perl-version: | ||
# - "5.34" | ||
# - "5.32" | ||
# - "5.30" | ||
# - "5.28" | ||
# - "5.26" | ||
# - "5.24" | ||
# # - "5.22" | ||
# # - "5.20.3" | ||
# # - "5.18.4" | ||
# # - "5.16.3" | ||
# # - "5.14.4" | ||
# # - "5.12.5" | ||
# # - "5.10.1" | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - name: Set Up Perl | ||
# uses: shogo82148/[email protected] | ||
# with: | ||
# perl-version: ${{ matrix.perl-version }} | ||
# - run: perl -V | ||
# - run: perl Makefile.PL | ||
# - run: make | ||
# - name: Run Tests | ||
# run: make test | ||
# env: | ||
# AUTHOR_TESTING: 1 | ||
# RELEASE_TESTING: 1 |