HTML Sanity Check Matrix Test #5
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: HTML Sanity Check Matrix Test | |
on: | |
push: | |
workflow_dispatch: {} | |
jobs: | |
test-java-os-mix: | |
strategy: | |
matrix: | |
os-version: [ ubuntu-latest, macos-14, windows-latest ] | |
java-version: [ 11, 17, 21 ] | |
runs-on: ${{ matrix.os-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download Artifacts | |
uses: dawidd6/action-download-artifact@v3 | |
with: | |
workflow: gradle-build.yml | |
name: maven-repo | |
path: build/maven-repo | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
# Always build with JDK 8 initially | |
java-version: ${{ matrix.java-version }} | |
- name: Execute integration test (on Unixes) | |
# if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }} | |
run: | | |
uname -a | |
./gradlew --version | |
./gradlew integrationTestOnly --scan | |
# - name: Execute integration test (on Windows) | |
# if: ${{ runner.os == 'Windows' }} | |
# run: | | |
# uname -a | |
# gradlew --version | |
# gradlew integrationTestOnly --scan | |