forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
166 lines (161 loc) · 6.26 KB
/
shared-wildfly-build-and-test.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# A workflow that can be called from other workflows as a way to build and test a SNAPSHOT of WildFly with overridden dependencies.
# Input parameters:
# * test-arguments: An optional argument allowing to provide arguments to configure testing. Note that '-DallTests' should not be passed as not all tests will work on GitHub Actions.
# * build-arguments: Arguments used during build. That is where you can override the version of the dependency.
# * maven-repo-path: The path to a tar.gz file of a maven repo that contains the built dependency(ies) you are using.
# * maven-repo-name: The name that identifies the maven repo to be downloaded.
# * java-versions: A string containing a JSON array of JDK versions. For example: "['17', '21']"
# * os: A string containing a JSON array of operating systems. For example: "['ubuntu-latest', 'windows-latest']"
#
# Example Usage (WildFly main branch is built and tested with a custom build of a dependency named 'my-dependency'.
#
#jobs:
# my-dependency-build:
# name: my-dependency
# runs-on: ubuntu-latest
# outputs:
# my-dependency-version: ${{ steps.version.outputs.my-dependency-version }}
# strategy:
# fail-fast: false
# steps:
# - uses: actions/checkout@v4
# - name: Set up JDK
# uses: actions/setup-java@v4
# with:
# java-version: '17'
# distribution: 'temurin'
# cache: 'maven'
# - name: Build and Test my-dependency
# run: mvn -U -B -ntp clean install
# shell: bash
# - id: version
# run: echo "my-dependency-version=$(mvn -B help:evaluate -Dexpression=project.version -DforceStdout -q)" >> $GITHUB_OUTPUT
# - name: Archive the repository
# run: |
# cd ~
# find ./.m2/repository -type d -name "*SNAPSHOT" -print0 | xargs -0 tar -czf ~/my-dependency-maven-repository.tar.gz
# - uses: actions/upload-artifact@v4
# with:
# name: my-dependency-maven-repository
# path: ~/my-dependency-maven-repository.tar.gz
# retention-days: 5
#
# wildfly-build-and-test-galleon-layers:
# name: Galleon Linux - JDK17
# uses: wildfly/wildfly/.github/workflows/shared-wildfly-build-and-test.yml@main
# with:
# test-arguments: '-Dts.layers -Dts.galleon'
# build-arguments: '-Dversion.org.wildfly.my-dependency=${{needs.my-dependency-build.outputs.my-dependency-version}}'
# os: "['ubuntu-latest']"
# java-versions: "['17']"
# maven-repo-name: my-dependency-maven-repository
# maven-repo-path: my-dependency-maven-repository.tar.gz
# needs: my-dependency-build
name: Build and Test WildFly
on:
workflow_call:
inputs:
test-arguments:
description: "Test arguments"
required: false
default: ""
type: string
build-arguments:
description: "Build arguments"
required: true
type: string
maven-repo-path:
description: "Maven repo path to extract to local cache"
required: true
type: string
maven-repo-name:
description: "Maven repo name to extract to local cache"
required: true
type: string
java-versions:
description: "JDK versions array"
required: true
type: string
os:
description: "OS array"
required: true
type: string
ref:
description: "WildFly ref"
required: false
default: ""
type: string
jobs:
wildfly-build-and-test:
name: ${{ matrix.os }}-jdk${{ matrix.java }} ${{ inputs.test-arguments }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ${{ fromJson(inputs.os) }}
java: ${{ fromJson(inputs.java-versions) }}
steps:
- uses: actions/checkout@v4
with:
repository: wildfly/wildfly
ref: '${{ inputs.ref }}'
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.maven-repo-name }}
path: .
- name: Extract Maven Repo
shell: bash
run: |
tar -xzf ${{ inputs.maven-repo-path }} -C ~
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build and Test WildFly SNAPSHOT ${{ inputs.build-arguments }} ${{ inputs.test-arguments }}
run: JAVA_HOME=$JAVA_HOME_${{ matrix.java }}_${{ runner.arch }} mvn -U -B -ntp clean install ${{ inputs.build-arguments }} ${{ inputs.test-arguments }}
shell: bash
# We need this due to long file names on Windows: https://github.com/actions/upload-artifact/issues/240
- name: Find reports on Windows
if: ${{ failure() && contains(matrix.os, 'windows') }}
run: |
{
echo 'SUREFIRE_REPORTS<<EOF'
find . -path '**/surefire-reports/*.xml'
echo EOF
} >> "$GITHUB_ENV"
shell: bash
- name: Find server logs on Windows
if: ${{ failure() && contains(matrix.os, 'windows') }}
run: |
{
echo 'SERVER_LOGS<<EOF'
find . -path '**/server.log'
echo EOF
} >> "$GITHUB_ENV"
shell: bash
- name: Upload Test Reports on Failure on Windows
uses: actions/upload-artifact@v4
if: ${{ failure() && contains(matrix.os, 'windows') }}
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}
path: ${{ env.SUREFIRE_REPORTS }}
- name: Upload Server Logs on Failure on Windows
uses: actions/upload-artifact@v4
if: ${{ failure() && contains(matrix.os, 'windows') }}
with:
name: server-logs-${{ matrix.os }}-${{ matrix.java }}
path: ${{ env.SERVER_LOGS }}
- name: Upload Test Reports on Failure
uses: actions/upload-artifact@v4
if: ${{ failure() && ! contains(matrix.os, 'windows') }}
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}
path: '**/surefire-reports/*.txt'
- name: Upload Server Logs on Failure
uses: actions/upload-artifact@v4
if: ${{ failure() && ! contains(matrix.os, 'windows') }}
with:
name: server-logs-${{ matrix.os }}-${{ matrix.java }}
path: '**/server.log'