ISPN-16670 Retry server failed on client after timeout #3
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: JDK Compatibility | |
on: | |
push: | |
branches: | |
- main | |
- '*.0.x' | |
pull_request: | |
branches: | |
- main | |
- '*.0.x' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: | |
- '22-ea' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.jdk }} | |
distribution: 'temurin' | |
- name: Build Infinispan | |
run: ./mvnw -B -s maven-settings.xml install -DskipTests |