-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
79 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: "test" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
push: | ||
branches: | ||
- "*" | ||
|
||
jobs: | ||
test-linux: | ||
name: "Linux Jtreg" | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
jdkconf: | ||
- JDK 8 | ||
- JDK 11 | ||
- JDK 17 | ||
- JDK 21 | ||
- JDK Latest | ||
include: | ||
- jdkconf: JDK 8 | ||
jdkver: "8" | ||
- jdkconf: JDK 11 | ||
jdkver: "11" | ||
- jdkconf: JDK 17 | ||
jdkver: "17" | ||
- jdkconf: JDK 21 | ||
jdkver: "21" | ||
- jdkconf: JDK Latest | ||
jdkver: "21" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ matrix.jdkver}} | ||
- name: Run | ||
run: ./run.sh "${JAVA_HOME}" | ||
|
||
test-macos: | ||
name: "MacOS" | ||
runs-on: "macos-latest" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
jdkconf: | ||
- JDK 8 | ||
- JDK 11 | ||
- JDK 17 | ||
- JDK 21 | ||
- JDK Latest | ||
include: | ||
- jdkconf: JDK 8 | ||
jdkver: "8" | ||
- jdkconf: JDK 11 | ||
jdkver: "11" | ||
- jdkconf: JDK 17 | ||
jdkver: "17" | ||
- jdkconf: JDK 21 | ||
jdkver: "21" | ||
- jdkconf: JDK Latest | ||
jdkver: "21" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ matrix.jdkver}} | ||
- name: Run | ||
run: ./run.sh "${JAVA_HOME}" | ||
|
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ classes | |
|
||
# Jtreg dirs | ||
jtreg | ||
test.* | ||
test.[0-9]* | ||
tests.[0-9]* | ||
|
||
jtreg*.tar.gz |