diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 85e8fdd..85960bc 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -14,10 +14,12 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: cip_tag: - static - - "5.33" + - "5.35" + - "5.34" - "5.32" - "5.30" - "5.28" @@ -65,3 +67,8 @@ jobs: - name: Build + Test run: | cip script + + - name: CPAN log + if: ${{ failure() }} + run: | + cip exec bash -c 'cat $HOME/.cpanm/latest-build/build.log' diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 76b5f91..5967d3d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -53,3 +53,8 @@ jobs: run: dzil run --no-build 'cpanm --installdeps .' - name: Run Tests run: dzil test -v + + - name: CPAN log + if: ${{ failure() }} + run: | + cip exec bash -c 'cat $HOME/.cpanm/latest-build/build.log'