-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a new manual mode of the Jakarta EE 11 TCK and test the core prof…
…ile. Signed-off-by: James R. Perkins <[email protected]>
- Loading branch information
Showing
2 changed files
with
46 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,46 @@ | ||
name: Jakarta EE 11 Core Profile with WildFly - Manual | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
wildfly-version: | ||
description: WildFly Version | ||
required: true | ||
type: string | ||
java-version: | ||
description: Java Version | ||
required: true | ||
default: 17 | ||
type: string | ||
|
||
# Only run the latest job | ||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
coreprofile-tck-manual: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Runner steps | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Java JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ inputs.java-version }} | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
- name: Build with Maven Java ${{ inputs.java-version }} on WildFly | ||
run: | | ||
cd core-profile | ||
mvn -B -V clean verify -Dversion.org.wildfly=${{ inputs.wildfly-version }} -fae -Pstaging | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: test-reports-${{ inputs.java-version }} | ||
path: | | ||
'**/surefire-reports/' | ||
'**/failsafe-reports/' | ||
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 |
---|---|---|
|
@@ -38,7 +38,6 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
java: ['17', '21'] | ||
|
||
# Runner steps | ||
|