Release Test #19
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
name: Release Test | |
on: | |
workflow_dispatch: | |
inputs: | |
additionalGradleOptions: | |
description: 'Additional Gradle options' | |
required: false | |
default: '' | |
jobs: | |
release-test: | |
name: Release Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 and 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
11 | |
17 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v2 | |
- name: Run Release Test | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: '--no-daemon :jarhc-release-test:test ${{ github.event.inputs.additionalGradleOptions }}' | |
cache-read-only: false | |
- name: Upload report | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: reports | |
path: jarhc-release-tests/build/reports/tests/test |