Best-effort error reporting for interactions on final methods #4630
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: 'Verify Branches and PRs' | |
on: | |
push: | |
branches-ignore: | |
- master | |
- gh-pages | |
pull_request: | |
merge_group: | |
# https://stackoverflow.com/a/72408109/16358266 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-verify: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
variant: ['2.5', '3.0', '4.0'] | |
java: ['8', '11', '17', '21', '22'] | |
os: ['ubuntu-latest'] | |
exclude: | |
- variant: '2.5' | |
java: '17' | |
os: 'ubuntu-latest' | |
- variant: '2.5' | |
java: '21' | |
os: 'ubuntu-latest' | |
- variant: '2.5' | |
java: '22' | |
os: 'ubuntu-latest' | |
include: | |
- variant: '2.5' | |
java: '8' | |
os: 'windows-latest' | |
- variant: '3.0' | |
java: '8' | |
os: 'windows-latest' | |
- variant: '4.0' | |
java: '8' | |
os: 'windows-latest' | |
- variant: '2.5' | |
java: '8' | |
os: 'macos-latest' | |
- variant: '3.0' | |
java: '8' | |
os: 'macos-latest' | |
- variant: '4.0' | |
java: '8' | |
os: 'macos-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Codecov needs fetch-depth > 1 | |
fetch-depth: 2 | |
- name: 'Set up JDKs' | |
uses: ./.github/actions/setup-build-env | |
with: | |
additional-java-version: ${{ matrix.java }} | |
- name: 'Build Spock' | |
# secrets are not injected for pull requests | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
run: ./gradlew --stacktrace ghActionsBuild "-Dvariant=${{ matrix.variant }}" "-DjavaVersion=${{ matrix.java }}" | |
- name: 'Upload to Codecov.io' | |
uses: codecov/codecov-action@v4 |