2022-12-14 15:12:23 +00:00
|
|
|
name: Setup integration test
|
|
|
|
description: Download Maven caches needed for integration tests
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
jdk-dist:
|
|
|
|
description: JDK distribution
|
|
|
|
required: false
|
|
|
|
default: temurin
|
|
|
|
jdk-version:
|
|
|
|
description: JDK version
|
|
|
|
required: false
|
2023-02-22 06:20:14 +00:00
|
|
|
default: 17
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
|
|
|
- id: setup-java
|
|
|
|
name: Setup Java
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
distribution: ${{ inputs.jdk-dist }}
|
|
|
|
java-version: ${{ inputs.jdk-version }}
|
|
|
|
|
|
|
|
- id: maven-cache
|
|
|
|
name: Maven cache
|
|
|
|
uses: ./.github/actions/maven-cache
|
|
|
|
|
|
|
|
- id: phantomjs-cache
|
|
|
|
name: PhantomJS cache
|
|
|
|
uses: ./.github/actions/phantomjs-cache
|
|
|
|
|
|
|
|
- id: download-keycloak
|
|
|
|
name: Download Keycloak Maven artifacts
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: m2-keycloak.tzts
|
|
|
|
|
|
|
|
- id: extract-maven-artifacts
|
|
|
|
name: Extract Keycloak Maven artifacts
|
|
|
|
shell: bash
|
|
|
|
run: tar -C ~/ --use-compress-program unzstd -xf m2-keycloak.tzts
|