-
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.
Execute integration tests with (LTS) Java versions
After building with JDK 8 we should check whether everything runs with other current JDK LTS versions and on major OS versions.
- Loading branch information
Showing
3 changed files
with
64 additions
and
8 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,31 @@ | ||
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 | ||
java-version: ${{ matrix.java-version }} | ||
- name: Execute integration test (on Unixes) | ||
run: | | ||
uname -a | ||
./gradlew --version | ||
./gradlew info | ||
./gradlew integrationTestOnly --scan | ||
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