-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and use batch file on Windows ...
- Loading branch information
Showing
2 changed files
with
41 additions
and
31 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: HTML Sanity Check Matrix Test | ||
on: | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
test-java-os-mix: | ||
needs: gradle | ||
strategy: | ||
matrix: | ||
os-version: [ ubuntu-latest, macos-14, windows-latest ] | ||
java-version: [ 8, 11, 17, 21 ] | ||
runs-on: ${{ matrix.os-version }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@master | ||
with: | ||
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 | ||
|