111 lines
3.4 KiB
YAML
111 lines
3.4 KiB
YAML
name: Reusable - Test latest deps
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
cache-read-only:
|
|
type: boolean
|
|
required: false
|
|
no-build-cache:
|
|
type: boolean
|
|
required: false
|
|
secrets:
|
|
GRADLE_ENTERPRISE_ACCESS_KEY:
|
|
required: false
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-latest-deps:
|
|
name: testLatestDeps${{ matrix.test-partition }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
test-partition:
|
|
- 0
|
|
- 1
|
|
- 2
|
|
- 3
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
|
|
- name: Free disk space
|
|
run: .github/scripts/gha-free-disk-space.sh
|
|
|
|
- name: Set up JDK for running Gradle
|
|
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
|
|
with:
|
|
distribution: temurin
|
|
java-version-file: .java-version
|
|
|
|
- name: Increase gradle daemon heap size
|
|
run: |
|
|
sed -i "s/org.gradle.jvmargs=/org.gradle.jvmargs=-Xmx3g /" gradle.properties
|
|
|
|
# vaadin tests use pnpm
|
|
- name: Cache pnpm modules
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
|
with:
|
|
path: ~/.pnpm-store
|
|
key: ${{ runner.os }}-test-latest-cache-pnpm-modules
|
|
|
|
- name: Start deadlock detector
|
|
run: .github/scripts/deadlock-detector.sh
|
|
|
|
- name: Setup Gradle
|
|
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4.1.0
|
|
with:
|
|
cache-read-only: ${{ inputs.cache-read-only }}
|
|
# gradle enterprise is used for the build cache
|
|
gradle-home-cache-excludes: caches/build-cache-1
|
|
|
|
- name: List tests
|
|
env:
|
|
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
|
|
run: >
|
|
./gradlew
|
|
check -x spotlessCheck
|
|
listTestsInPartition
|
|
-PtestPartition=${{ matrix.test-partition }}
|
|
-PtestLatestDeps=true
|
|
|
|
- name: Set test tasks
|
|
run: |
|
|
echo "test-tasks=$(cat test-tasks.txt | xargs echo | sed 's/\n/ /g')" >> $GITHUB_ENV
|
|
|
|
- name: Test
|
|
env:
|
|
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
|
|
run: >
|
|
./gradlew
|
|
${{ env.test-tasks }}
|
|
-PtestLatestDeps=true
|
|
${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
|
|
|
|
- name: Build scan
|
|
if: ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
|
|
run: cat build-scan.txt
|
|
|
|
- name: Upload deadlock detector artifacts if any
|
|
if: failure()
|
|
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
|
|
with:
|
|
name: deadlock-detector-test-latest-${{ matrix.test-java-version }}-${{ matrix.vm }}-${{ matrix.test-partition }}
|
|
path: /tmp/deadlock-detector-*
|
|
if-no-files-found: ignore
|
|
|
|
- name: Upload jvm crash dump files if any
|
|
if: failure()
|
|
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
|
|
with:
|
|
name: javacore-test-latest-${{ matrix.test-java-version }}-${{ matrix.test-partition }}
|
|
path: |
|
|
**/hs_err_pid*.log
|
|
**/javacore.*.txt
|
|
**/Snap.*.trc
|
|
**/core.*.dmp
|
|
**/jitdump.*.dmp
|
|
if-no-files-found: ignore
|