only include perl releases from metacpan that are marked as authorized #101
Workflow file for this run
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
name: CI | |
on: pull_request | |
jobs: | |
mbtiny-dist: | |
runs-on: ubuntu-latest | |
container: | |
image: perl:5.38 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cpanm --quiet --notest App::ModuleBuildTiny | |
- run: mbtiny dist | |
- run: echo ./App-perlbrew-*.tar.gz | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: App-perlbrew-tarball | |
path: ./App-perlbrew-*.tar.gz | |
retention-days: 5 | |
cpanm-dist: | |
needs: mbtiny-dist | |
strategy: | |
matrix: | |
version: ["5.38", "5.36", "5.34", "5.18"] | |
name: cpanm-dist-perl-${{ matrix.version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shogo82148/[email protected] | |
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@v4 | |
with: | |
name: App-perlbrew-tarball | |
- run: echo ./App-perlbrew-*.tar.gz | |
- run: cpanm --verbose ./App-perlbrew-*.tar.gz |