Skip to content

Commit

Permalink
Add a new manual mode of the Jakarta EE 11 TCK and test the core prof…
Browse files Browse the repository at this point in the history
…ile.

Signed-off-by: James R. Perkins <[email protected]>
  • Loading branch information
jamezp committed Oct 15, 2024
1 parent 4c76346 commit e611b6e
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/core-profile-tck-ee11-manual.yml
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/'
1 change: 0 additions & 1 deletion .github/workflows/core-profile-tck-ee11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
java: ['17', '21']

# Runner steps
Expand Down

0 comments on commit e611b6e

Please sign in to comment.