2022-12-14 15:12:23 +00:00
|
|
|
name: Build Keycloak
|
|
|
|
description: Builds Keycloak providing Maven repository with all artifacts
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
upload-m2-repo:
|
|
|
|
description: Upload Maven repository for org.keycloak artifacts
|
|
|
|
required: false
|
2023-07-26 10:35:21 +00:00
|
|
|
default: "true"
|
2022-12-14 15:12:23 +00:00
|
|
|
upload-dist:
|
|
|
|
description: Upload distribution
|
|
|
|
required: false
|
2023-07-26 10:35:21 +00:00
|
|
|
default: "false"
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
|
|
|
- id: setup-java
|
|
|
|
name: Setup Java
|
2023-07-26 10:35:21 +00:00
|
|
|
uses: ./.github/actions/java-setup
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
- id: maven-cache
|
|
|
|
name: Maven cache
|
|
|
|
uses: ./.github/actions/maven-cache
|
2023-03-07 10:44:49 +00:00
|
|
|
with:
|
|
|
|
create-cache-if-it-doesnt-exist: true
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
- id: phantomjs-cache
|
|
|
|
name: PhantomJS cache
|
|
|
|
uses: ./.github/actions/phantomjs-cache
|
|
|
|
|
2023-05-02 10:29:42 +00:00
|
|
|
# Remove once https://github.com/keycloak/keycloak/issues/19299 is solved
|
|
|
|
########################################################################################################
|
|
|
|
- id: check-adapter-changes
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
name: Check changes for WildFly adapters
|
|
|
|
shell: bash
|
|
|
|
# If there are no changes for WildFly adapters, we use adapters built in the latest nightly build
|
|
|
|
run: |
|
|
|
|
WF_ADAPTERS_REGEX="^adapters/oidc/wildfly|^adapters/saml/wildfly"
|
|
|
|
|
|
|
|
git fetch origin --tags --force
|
|
|
|
|
|
|
|
echo "GIT_WF_ADAPTERS_DIFF=$(git diff origin/main --name-only | egrep -ic -e "$WF_ADAPTERS_REGEX")" >> $GITHUB_ENV
|
|
|
|
echo "NIGHTLY_DIFF=$(git diff nightly --name-only | egrep -ic -e "$WF_ADAPTERS_REGEX")" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- id: set-maven-profile
|
|
|
|
if: ${{ github.event_name != 'pull_request' || env.GIT_WF_ADAPTERS_DIFF != 0 || env.NIGHTLY_DIFF != 0}}
|
|
|
|
name: Set profile for building distribution
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "MVN_PROFILES=-Pdistribution" >> $GITHUB_ENV
|
|
|
|
echo "WildFly adapters will be built in our codebase"
|
|
|
|
########################################################################################################
|
|
|
|
|
2022-12-14 15:12:23 +00:00
|
|
|
- id: build-keycloak
|
|
|
|
name: Build Keycloak
|
|
|
|
shell: bash
|
2023-03-07 10:44:49 +00:00
|
|
|
# By using "dependency:resolve", it will download all dependencies used in later stages for running the tests
|
2022-12-14 15:12:23 +00:00
|
|
|
run: |
|
|
|
|
MVN_HTTP_CONFIG="-Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120"
|
2023-05-17 10:32:44 +00:00
|
|
|
./mvnw install dependency:resolve -nsu -V -B -e -DskipTests -DskipExamples $MVN_HTTP_CONFIG ${{ env.MVN_PROFILES}}
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
- id: compress-keycloak-maven-repository
|
|
|
|
name: Compress Keycloak Maven artifacts
|
|
|
|
if: inputs.upload-m2-repo == 'true'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
tar -C ~/ --use-compress-program zstd -cf m2-keycloak.tzts \
|
|
|
|
--exclude '*.tar.gz' \
|
|
|
|
.m2/repository/org/keycloak
|
|
|
|
|
|
|
|
- id: upload-keycloak-maven-repository
|
|
|
|
name: Upload Keycloak Maven artifacts
|
|
|
|
if: inputs.upload-m2-repo == 'true'
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: m2-keycloak.tzts
|
|
|
|
path: m2-keycloak.tzts
|
|
|
|
retention-days: 1
|
|
|
|
|
|
|
|
- id: upload-keycloak-dist
|
|
|
|
name: Upload Keycloak dist
|
|
|
|
if: inputs.upload-dist == 'true'
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: keycloak-dist
|
|
|
|
path: quarkus/dist/target/keycloak*.tar.gz
|
|
|
|
retention-days: 1
|