forked from wildfly/wildfly-core
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (60 loc) · 1.77 KB
/
build-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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Manually start a build and/or testing with maven
# For more information, see https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: Manual Build and Test
on:
workflow_dispatch:
inputs:
os:
description: 'OS'
required: false
default: 'ubuntu-latest'
type: choice
options:
- ubuntu-latest
- windows-latest
jdk-distribution:
description: 'JDK Distribution'
required: false
default: 'temurin'
type: choice
options:
- temurin
- semeru
- microsoft
- oracle
- zulu
- corretto
- liberica
jdk-version:
description: 'JDK Version'
required: true
type: string
args:
description: 'Arguments like -DskipTests -pl testbom,threads -am'
required: false
type: string
timeout:
description: 'Job Timeout Minutes'
required: false
default: 120
type: number
jobs:
build:
name: Build and Test
runs-on: ${{ inputs.os }}
timeout-minutes: ${{ fromJSON(inputs.timeout) }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ inputs.jdk-distribution }} ${{ inputs.jdk-version }}
uses: actions/setup-java@v4
with:
distribution: ${{ inputs.jdk-distribution }}
java-version: ${{ inputs.jdk-version }}
cache: 'maven'
- name: Build and test with Maven
run: mvn -B -ntp clean install ${{ inputs.args }}
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ${{ inputs.jdk-distribution }}-${{ inputs.jdk-version }}-${{ inputs.os }}
path: '**/surefire-reports/*.txt'