-
Notifications
You must be signed in to change notification settings - Fork 0
339 lines (283 loc) · 8.27 KB
/
build.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
name: Build
on:
workflow_dispatch:
push:
branches:
- "main"
paths-ignore:
- '**.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- '**.md'
- '**.adoc'
- '**.txt'
- '.all-contributorsrc'
pull_request:
paths-ignore:
- '**.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- '**.md'
- '**.adoc'
- '**.txt'
- '.all-contributorsrc'
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'turing85/advent-of-code-2022' }}
permissions:
actions: write
checks: write
pull-requests: write
jobs:
recreate-comment:
runs-on: ubuntu-latest
steps:
- name: Publish Report
uses: turing85/publish-report@v2
with:
checkout: true
recreate-comment: true
determine-projects:
runs-on: ubuntu-latest
outputs:
projects: ${{ steps.determine-projects.outputs.projects }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Determine Test Projects
id: determine-projects
run: |
pom_file=pom.xml
exclude_package_type=pom
current_dir="$(pwd)"
mapfile -t candidates < <(
find "${current_dir}" -type f -name "${pom_file}" \
| sed "s|^\(.*\)/${pom_file}$|\1|" \
| sort \
| uniq)
results=()
for candidate in "${candidates[@]}"
do
pom_packaging=0
grep --quiet \
"<packaging>${exclude_package_type}</packaging>" \
"${candidate}/${pom_file}" \
|| pom_packaging="${?}"
if [[ "${pom_packaging}" -ne 0 ]]
then
results+=( $( \
echo "${candidate}" \
| sed "s|^${current_dir}/\(.*\)$|\1|g") )
fi
done
projects="$( \
echo "${results[@]}" \
| jq \
--raw-input \
--compact-output \
'split(" ")')"
echo "projects=${projects}" >> "${GITHUB_OUTPUT}"
populate-cache:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Populate Cache
uses: ./.github/actions/populate-cache
with:
nvd-api-key: ${{ secrets.NVD_API_KEY }}
build:
runs-on: ubuntu-latest
needs:
- determine-projects
- populate-cache
strategy:
matrix:
project: ${{ fromJson(needs.determine-projects.outputs.projects) }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
cache: 'maven'
distribution: 'temurin'
java-version: 21
- name: Set up Maven 3.9.4
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.4
- name: Build
run: |
mvn \
--batch-mode \
--define ci-build \
--projects ${{ matrix.project }} \
package
- name: Upload Maven State (${{ matrix.project }})
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: maven-state-${{ matrix.project }}
path: '**/target/maven-*'
retention-days: 2
- name: Upload Compiled Classes (${{ matrix.project }})
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: compiled-classes-${{ matrix.project }}
path: '**/target/*classes'
retention-days: 2
- name: Upload JARs (${{ matrix.project }})
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: jars-${{ matrix.project }}
path: '**/target/*.jar'
retention-days: 2
- name: Cancel Build
if: ${{ failure() }}
uses: andymckay/cancel-action@0.4
test:
runs-on: ubuntu-latest
needs:
- determine-projects
- build
continue-on-error: true
strategy:
matrix:
project: ${{ fromJson(needs.determine-projects.outputs.projects) }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
cache: 'maven'
distribution: 'temurin'
java-version: 21
- name: Set up Maven 3.9.4
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.4
- name: Download Maven State
uses: actions/download-artifact@v4
with:
name: maven-state-${{ matrix.project }}
- name: Download Compiled Classes
uses: actions/download-artifact@v4
with:
name: compiled-classes-${{ matrix.project }}
- name: Download JARs
uses: actions/download-artifact@v4
with:
name: jars-${{ matrix.project }}
- name: Run Tests
run: |
mvn \
--batch-mode \
--define ci-test \
--projects ${{ matrix.project }} \
package
- name: Upload Test Report
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
if-no-files-found: error
name: test-report-${{ matrix.project }}
path: '**/target/surefire-reports/TEST*.xml'
retention-days: 2
- name: Upload Coverage Report
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: coverage-report-${{ matrix.project }}
path: '**/target/jacoco/**/*.xml'
retention-days: 2
test-report:
runs-on: ubuntu-latest
needs:
- recreate-comment
- test
steps:
- uses: turing85/publish-report@v2
with:
checkout: true
download-artifact-pattern: test-report-*
download-artifact-merge-multiple: true
report-name: JUnit Test
report-only-summary: true
report-path: '**/target/surefire-reports/TEST*.xml'
sonar:
runs-on: ubuntu-latest
needs:
- test
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
cache: 'maven'
distribution: 'temurin'
java-version: 21
- name: Set up Maven 3.9.4
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.4
- name: Download Maven State
uses: actions/download-artifact@v4
with:
pattern: maven-state-*
merge-multiple: true
- name: Download Compiled Classes
uses: actions/download-artifact@v4
with:
pattern: compiled-classes-*
merge-multiple: true
- name: Download JARs
uses: actions/download-artifact@v4
with:
pattern: jars-*
merge-multiple: true
- name: Download Coverage Report
uses: actions/download-artifact@v4
with:
pattern: coverage-report-*
merge-multiple: true
- name: Sonar Analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
mvn \
--batch-mode \
--define ci-build \
--define sonar.host.url=https://sonarcloud.io \
--define sonar.token=${SONAR_TOKEN} \
--define sonar.organization=turing85-pure \
--define sonar.projectKey=turing85_advent-of-code-2022 \
--define sonar.sourceEncoding=UTF-8 \
package \
sonar:sonar
- name: Cancel Build
if: ${{ failure() }}
uses: andymckay/cancel-action@0.4
owasp:
runs-on: ubuntu-latest
needs:
- recreate-comment
- build
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: OWASP Scan
uses: ./.github/actions/owasp-scan
with:
nvd-api-key: ${{ secrets.NVD_API_KEY }}