Build(deps): Bump com.google.errorprone:error_prone_core from 2.48.0 to 2.49.0 #449
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: matrix CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| strategy: | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast | |
| fail-fast: false | |
| # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs | |
| matrix: | |
| # https://github.com/actions/setup-java#supported-distributions | |
| javaversion: [ '21' ] | |
| # disabled for now for performance reason: javadistribution: ['adopt', 'adopt-openj9', 'corretto', 'dragonwell', 'liberica', 'microsoft', 'temurin', 'zulu'] # internally 'adopt-hotspot' is the same as 'adopt' | |
| javadistribution: ['temurin'] | |
| # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources | |
| # disabled for now for performance reason: os: [macos-latest, ubuntu-latest, windows-latest] | |
| os: [windows-latest] | |
| exclude: | |
| - javadistribution: 'microsoft' | |
| os: 'macos-latest' | |
| - javadistribution: 'dragonwell' | |
| os: 'macos-latest' | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.javaversion }} ${{ matrix.javadistribution }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.javaversion }} | |
| distribution: ${{ matrix.javadistribution }} | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn -B --no-transfer-progress "-Dnet.ladenthin.bitcoinaddressfinder.disableLMDBTest=false" test --file pom.xml | |
| - name: Upload Surefire Reports and JVM Crash Logs | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: surefire-reports-${{ matrix.os }}-${{ matrix.javadistribution }}-java${{ matrix.javaversion }} | |
| path: | | |
| target/surefire-reports/** | |
| hs_err_pid*.log |