2.09 release candidate #487
Workflow file for this run
This file contains hidden or 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: build and test | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| env: | |
| PERL_CPANM_OPT: "--quiet --notest" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| AUTHOR_TESTING: 1 | |
| EXTENDED_TESTING: 1 | |
| RELEASE_TESTING: 1 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v5 | |
| - name: Extract author information | |
| run: | | |
| echo AUTHOR_NAME="$(git log -1 ${GITHUB_REF} --pretty='%aN')" >> $GITHUB_ENV | |
| echo AUTHOR_EMAIL="$(git log -1 ${GITHUB_REF} --pretty='%aE')" >> $GITHUB_ENV | |
| - uses: shogo82148/actions-setup-perl@v1 | |
| - name: Log perl version | |
| run: perl -V | |
| - name: Install Dist::Zilla & Devel::Cover::Report::Coveralls | |
| run: cpm install --global Dist::Zilla Devel::Cover::Report::Coveralls | |
| - name: Install author dependencies | |
| run: dzil authordeps | cpm install --global - | |
| - name: Install dependencies | |
| run: dzil listdeps --develop | cpanm | |
| - name: Build dist | |
| run: dzil build --no-tgz --in build | |
| - name: Install dependencies | |
| run: cd build && cpm install --global Carton::Snapshot && cpm install --global --verbose --with-all | |
| - name: Run tests | |
| run: | | |
| cd build | |
| [ -d xt ] && prove --timer --lib --recurse --jobs $(nproc) --shuffle xt/ | |
| HARNESS_PERL_SWITCHES="-MDevel::Cover=+ignore,^t/ -MSyntax::Keyword::Try::Deparse" prove --timer --lib --recurse --jobs $(nproc) --shuffle t/ | |
| - name: Report coverage info to Coveralls | |
| run: | | |
| cd build | |
| cover -report coveralls | |
| rm -rf cover_db | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload build results | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: build_results | |
| path: build | |
| linux: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| perl: [ "5.14", "5.20", "5.30", "5.40" ] | |
| name: linux ${{ matrix.perl }} | |
| steps: | |
| - name: Download build results | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: build_results | |
| path: build | |
| - name: Setup Perl | |
| uses: shogo82148/actions-setup-perl@v1 | |
| with: | |
| perl-version: ${{ matrix.perl }} | |
| - name: Log perl information | |
| run: perl -V | |
| - name: Install dependencies | |
| run: cd build && cpm install --global Carton::Snapshot && cpm install --global --verbose --show-build-log-on-failure --with-all | |
| - name: Run tests | |
| run: cd build && prove --timer --lib --recurse --jobs $(nproc) --shuffle t | |
| macos: | |
| needs: build | |
| runs-on: macos-latest | |
| name: macos | |
| steps: | |
| - name: Download build results | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: build_results | |
| path: build | |
| - name: Setup Perl | |
| uses: shogo82148/actions-setup-perl@v1 | |
| - name: Log perl information | |
| run: perl -V | |
| - name: Install dependencies | |
| run: cd build && cpm install --global Carton::Snapshot && cpm install --global --verbose --show-build-log-on-failure --with-all | |
| - name: Run tests | |
| run: cd build && prove --timer --lib --recurse --jobs $(sysctl -n hw.logicalcpu) --shuffle t | |
| windows: | |
| needs: build | |
| runs-on: windows-latest | |
| name: windows | |
| steps: | |
| - name: Download build results | |
| uses: actions/download-artifact@v6 | |
| with: | |
| name: build_results | |
| path: build | |
| - name: Setup Perl | |
| uses: shogo82148/actions-setup-perl@v1 | |
| with: | |
| distribution: strawberry | |
| - name: Log perl information | |
| run: perl -V | |
| - name: Install dependencies | |
| run: cd build && cpm install --global Carton::Snapshot && cpm install --global --verbose --show-build-log-on-failure --with-all | |
| - name: Run tests | |
| run: cd build && prove --timer --lib --recurse --jobs $(nproc) --shuffle t |