Skip to content

Merge 'integration' to 'rc/1.26' #59

Merge 'integration' to 'rc/1.26'

Merge 'integration' to 'rc/1.26' #59

Workflow file for this run

name: PR QA
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Checkout and Build
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
java-version: [8, 11, 16, 17, 21]
steps:
- uses: actions/checkout@v4
- name: JDK setup
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 -Dmaven.wagon.http.pool=false install
- name: Output integration test results
run: cat target/test-results/index.html