-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (41 loc) · 1.28 KB
/
core-profile-tck-ee11-manual.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
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 ${{ inputs.wildfly-version }}
run: |
cd jakarta-ee-tck-runners
mvn -B -V clean verify -Dversion.org.wildfly=${{ inputs.wildfly-version }} -fae -Dcore.profile
- name: TCK Report
run: |
cd jakarta-ee-tck-runners
/bin/bash ./core-profile-summary-report.sh --batch
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-reports-${{ inputs.java-version }}
path: |
'**/surefire-reports/'
'**/failsafe-reports/'