-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from jamezp/ee11-core-profile
Migrate the core-tck-runner for Jakarta EE 11 Core Profile.
- Loading branch information
Showing
14 changed files
with
469 additions
and
355 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
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
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
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
Oops, something went wrong.