Skip to content

Merge branch '2.18' into 2.19 #50

Merge branch '2.18' into 2.19

Merge branch '2.18' into 2.19 #50

Workflow file for this run

name: Build and Run Tests
on:
push:
branches: [2.*]
pull_request:
branches: [2.*]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java_version: ['17', '21', '23']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/checkout@v4.2.2
- name: Set up JDK
uses: actions/setup-java@v4.6.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build
run: ./mvnw -V -B -ff -ntp verify