Update Maven Integration Tests to use JVM Test Suites #1026
Workflow file for this 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
name: Test [smoke] | |
on: pull_request | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
env: | |
JAVA_TEST_VERSION: 11 | |
jobs: | |
test-matrix: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set longpaths support for Windows | |
if: matrix.os == 'windows-latest' | |
# Avoid failing tests on Windows with "cannot create directory at X. Filename too long" | |
# This command will fail if run on a Linux build agent with "could not lock config file: Permission denied" | |
run: git config --system core.longpaths true | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Run tests | |
run: > | |
./gradlew test --stacktrace --continue | |
"-Porg.jetbrains.dokka.javaToolchain.testLauncher=${{ env.JAVA_TEST_VERSION }}" |