keycloak-restrict-client-auth/.github/workflows/buildAndTest.yml
Sven-Torben Janus 6f89876fd1 chore!(deps): Update Keycloak dependencies to 18.0.0
Compatibility issues:
Due to a refactoring of Keycloak's `ResourceStore` API this extension
will no longer be backwards compatible with Keycloak versions < 18.x.

For details please see
99c06d1102
and https://github.com/keycloak/keycloak/issues/10447
2022-04-20 23:13:18 +02:00

55 lines
1.6 KiB
YAML

name: Build and test
on:
push:
branches: [ main ]
paths:
- 'src/**'
- '*.xml'
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
- name: Cache maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: mvn -B clean package --file pom.xml
- name: Integration test
run: mvn -B failsafe:integration-test failsafe:verify --file pom.xml
compatibility:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
keycloak_version: [ 15.1.1, 16.1.1, 17.0.1, 18.0.0, latest ]
keycloak_dist: [wildfly, quarkus]
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
- name: Cache maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Compatibility tests
run: mvn -B -U clean test-compile failsafe:integration-test failsafe:verify --file pom.xml -Dkeycloak.version=${{ matrix.keycloak_version }} -Dkeycloak.dist=${{ matrix.keycloak_dist }}