-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support for default first broker login flow on realm level
- Loading branch information
1 parent
6f62723
commit 87c2a51
Showing
12 changed files
with
2,250 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,11 @@ jobs: | |
key: ${{ runner.os }}-maven-${{ matrix.env.KEYCLOAK_VERSION }}-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-maven-${{ matrix.env.KEYCLOAK_VERSION }} | ||
|
||
- name: Adapt sources for Keycloak versions < 24.0.0 | ||
if: ${{ matrix.env.KEYCLOAK_VERSION < '24.0.0' }} | ||
run: | | ||
echo "COMPATIBILITY_PROFILE=-Ppre-keycloak24" >> $GITHUB_ENV | ||
- name: Adapt sources for Keycloak versions < 23.0.0 | ||
if: ${{ matrix.env.KEYCLOAK_VERSION < '23.0.0' }} | ||
run: | | ||
|
@@ -72,7 +77,9 @@ jobs: | |
echo "COMPATIBILITY_PROFILE=-Ppre-keycloak19" >> $GITHUB_ENV | ||
- name: Build & Test | ||
run: ./mvnw ${MAVEN_CLI_OPTS} -Dkeycloak.version=${{ matrix.env.KEYCLOAK_VERSION }} ${ADJUSTED_RESTEASY_VERSION} clean verify -Pcoverage ${COMPATIBILITY_PROFILE} | ||
run: | | ||
echo "using COMPATIBILITY_PROFILE: ${COMPATIBILITY_PROFILE}" | ||
./mvnw ${MAVEN_CLI_OPTS} -Dkeycloak.version=${{ matrix.env.KEYCLOAK_VERSION }} ${ADJUSTED_RESTEASY_VERSION} clean verify -Pcoverage ${COMPATIBILITY_PROFILE} | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
|
@@ -185,6 +192,11 @@ jobs: | |
key: ${{ runner.os }}-${{ matrix.java }}-maven-build-pom-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-${{ matrix.java }}-maven-build-pom | ||
|
||
- name: Adapt sources for Keycloak versions < 24.0.0 | ||
if: ${{ matrix.env.KEYCLOAK_VERSION < '24.0.0' }} | ||
run: | | ||
echo "COMPATIBILITY_PROFILE=-Ppre-keycloak24" >> $GITHUB_ENV | ||
- name: Adapt sources for Keycloak versions < 23.0.0 | ||
if: ${{ matrix.env.KEYCLOAK_VERSION < '23.0.0' }} | ||
run: | | ||
|
@@ -222,6 +234,10 @@ jobs: | |
key: ${{ runner.os }}-maven-keycloak-legacy-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven-keycloak-legacy | ||
- name: Adapt sources for Keycloak versions < 24.0.0 | ||
if: ${{ matrix.env.KEYCLOAK_VERSION < '24.0.0' }} | ||
run: | | ||
echo "COMPATIBILITY_PROFILE=-Ppre-keycloak24" >> $GITHUB_ENV | ||
- name: Adapt sources for Keycloak versions < 23.0.0 | ||
if: ${{ matrix.env.KEYCLOAK_VERSION < '23.0.0' }} | ||
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
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
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
Oops, something went wrong.