Commit e611b6e 1 parent 4c76346 commit e611b6e Copy full SHA for e611b6e
File tree 2 files changed +46
-1
lines changed
2 files changed +46
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Jakarta EE 11 Core Profile with WildFly - Manual
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ wildfly-version :
7
+ description : WildFly Version
8
+ required : true
9
+ type : string
10
+ java-version :
11
+ description : Java Version
12
+ required : true
13
+ default : 17
14
+ type : string
15
+
16
+ # Only run the latest job
17
+ concurrency :
18
+ group : ' ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
19
+ cancel-in-progress : true
20
+
21
+ jobs :
22
+ coreprofile-tck-manual :
23
+ # The type of runner that the job will run on
24
+ runs-on : ubuntu-latest
25
+
26
+ # Runner steps
27
+ steps :
28
+ - uses : actions/checkout@v4
29
+ - name : Setup Java JDK
30
+ uses : actions/setup-java@v4
31
+ with :
32
+ java-version : ${{ inputs.java-version }}
33
+ distribution : ' temurin'
34
+ cache : ' maven'
35
+ - name : Build with Maven Java ${{ inputs.java-version }} on WildFly
36
+ run : |
37
+ cd core-profile
38
+ mvn -B -V clean verify -Dversion.org.wildfly=${{ inputs.wildfly-version }} -fae -Pstaging
39
+ - uses : actions/upload-artifact@v4
40
+ if : failure()
41
+ with :
42
+ name : test-reports-${{ inputs.java-version }}
43
+ path : |
44
+ '**/surefire-reports/'
45
+ '**/failsafe-reports/'
46
+
Original file line number Diff line number Diff line change 38
38
strategy :
39
39
fail-fast : false
40
40
matrix :
41
- os : [ubuntu-latest]
42
41
java : ['17', '21']
43
42
44
43
# Runner steps
You can’t perform that action at this time.
0 commit comments