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

CI tweaks #796

Merged
merged 5 commits into from Mar 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 21 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -8,11 +8,11 @@ jobs:
container:
image: perl:5.38
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: cpanm --quiet --notest App::ModuleBuildTiny
- run: mbtiny dist
- run: echo ./App-perlbrew-*.tar.gz
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: App-perlbrew-tarball
path: ./App-perlbrew-*.tar.gz
Expand All @@ -22,13 +22,30 @@ jobs:
needs: mbtiny-dist
strategy:
matrix:
version: ["5.38", "5.36", "5.18"]
version: ["5.38", "5.36", "5.34", "5.18"]
name: cpanm-dist-perl-${{ matrix.version }}
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-setup-perl@v1.29.0
with:
perl-version: ${{ matrix.version }}
- uses: actions/download-artifact@v4
with:
name: App-perlbrew-tarball
- run: echo ./App-perlbrew-*.tar.gz
- run: cpanm --verbose ./App-perlbrew-*.tar.gz

cpanm-dist-in-container:
needs: mbtiny-dist
strategy:
matrix:
version: ["5.39"]
name: cpanm-dist-perl-${{ matrix.version }}
runs-on: ubuntu-latest
container:
image: perl:${{ matrix.version }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: App-perlbrew-tarball
- run: echo ./App-perlbrew-*.tar.gz
Expand Down