diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 393ba36acd..88d584f361 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -208,6 +208,11 @@ jobs: name: "Coverage: ${{ matrix.php }} ${{ matrix.custom_ini && ' with custom ini settings' || '' }} (${{ matrix.os == 'windows-latest' && 'Win' || 'Linux' }})" steps: + - name: "DEBUG: Print Runner Architecture" + run: | + echo "RUNNER_ARCH: $RUNNER_ARCH" + echo "uname -m: $(uname -m)" + - name: Prepare git to leave line endings alone run: git config --global core.autocrlf input @@ -314,6 +319,7 @@ jobs: file: build/logs/clover.xml flag-name: os-${{ matrix.os }}-php-${{ matrix.php }}-custom-ini-${{ matrix.custom_ini }} parallel: true + debug: true - name: "Upload coverage results to Coveralls (CBF run)" if: ${{ matrix.os != 'windows-latest' && success() }} @@ -323,6 +329,7 @@ jobs: file: build/logs/clover-cbf.xml flag-name: cbf-os-${{ matrix.os }}-ubuntu-latest-php-${{ matrix.php }}-custom-ini-${{ matrix.custom_ini }} parallel: true + debug: true coveralls-finish: needs: coverage