-
Notifications
You must be signed in to change notification settings - Fork 0
255 lines (218 loc) · 6.46 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
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/run-query' }}
env:
DOCKER_BUILDKIT: 1
GRAALVM_DISTRIBUTION: mandrel
GRAALVM_VERSION: mandrel-22.3.2.1-Final
JAVA_VERSION: 17
MANDREL_VERSION: 22.3.2.1-Final
permissions:
actions: write
checks: write
pull-requests: write
jobs:
recreate-comment:
name: Recreate Comment
runs-on: ubuntu-latest
steps:
- name: Publish Report
uses: turing85/[email protected]
with:
checkout: true
recreate-comment: true
populate-cache:
name: Populate Cache
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Populate Cache
uses: ./.github/actions/populate-cache
with:
graalvm-distribution: ${{ env.GRAALVM_DISTRIBUTION }}
graalvm-version: ${{ env.GRAALVM_VERSION }}
java-version: ${{ env.JAVA_VERSION }}
build-and-test-jvm:
name: Build and Test (JVM)
runs-on: ubuntu-latest
continue-on-error: true
needs:
- populate-cache
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up ${{ env.GRAALVM_DISTRIBUTION}} ${{ env.MANDREL_VERSION }} (Java ${{ env.JAVA_VERSION }})
uses: graalvm/setup-graalvm@v1
with:
cache: 'maven'
distribution: ${{ env.GRAALVM_DISTRIBUTION}}
java-version: ${{ env.JAVA_VERSION }}
version: ${{ env.GRAALVM_VERSION }}
- name: Build and Test
run: |
./mvnw \
--batch-mode \
--color always \
--define build-container-image \
--define ci \
verify
- name: Upload Maven State
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: maven-state
path: '**/target/maven-*'
retention-days: 2
- name: Upload Compiled Classes
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: compiled-classes
path: '**/target/*classes'
retention-days: 2
- name: Upload JARs
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: jars
path: '**/target/*.jar'
retention-days: 2
- name: Upload Fast-JAR
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: fast-jar
path: 'target/quarkus-app'
retention-days: 2
- name: Upload Test Report
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: test-report-jvm
path: '**/target/**/TEST*.xml'
retention-days: 2
build-and-test-native:
name: Build and Test (Native)
runs-on: ubuntu-latest
continue-on-error: true
needs:
- populate-cache
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up ${{ env.GRAALVM_DISTRIBUTION}} ${{ env.MANDREL_VERSION }} (Java ${{ env.JAVA_VERSION }})
uses: graalvm/setup-graalvm@v1
with:
cache: 'maven'
distribution: ${{ env.GRAALVM_DISTRIBUTION}}
java-version: ${{ env.JAVA_VERSION }}
version: ${{ env.GRAALVM_VERSION }}
# TODO: Remove if bug in quarkus is fixed
- name: Pre-pull builder-image
run: |
docker pull quay.io/quarkus/ubi-quarkus-mandrel-builder-image:23.0-java17@sha256:2016d11266d8a8beb3fa76b0d12cc4399e99821afaeac32e2273d3cc1b2bda0b
- name: Build and Test
run: |
./mvnw \
--batch-mode \
--color always \
--define build-container-image \
--define ci \
--define native-compressed \
verify
- name: Upload executable
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: executable
path: |
target/*-runner
target/*.so
retention-days: 2
- name: Upload Test Report
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
if-no-files-found: error
name: test-report-native
path: '**/target/**/TEST*.xml'
retention-days: 2
test-report-jvm:
name: Test Report (JVM)
runs-on: ubuntu-latest
needs:
- recreate-comment
- build-and-test-jvm
steps:
- name: Publish report (JVM Test)
uses: turing85/[email protected]
if: ${{ always() }}
with:
cancel-workflow-on-error: true
checkout: true
download-artifact-name: test-report-jvm
report-name: JVM Test
report-only-summary: true
report-path: '**/target/**/TEST*.xml'
test-report-native:
name: Test Report (Native)
runs-on: ubuntu-latest
needs:
- recreate-comment
- build-and-test-native
steps:
- name: Publish Report (Native Test)
uses: turing85/[email protected]
if: ${{ always() }}
with:
cancel-workflow-on-error: true
checkout: true
download-artifact-name: test-report-native
report-name: Native Test
report-only-summary: true
report-path: '**/target/**/TEST*.xml'
owasp:
name: OWASP Scan
runs-on: ubuntu-latest
needs:
- recreate-comment
- build-and-test-jvm
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: OWASP Scan
uses: ./.github/actions/owasp-scan
with:
graalvm-distribution: ${{ env.GRAALVM_DISTRIBUTION }}
graalvm-version: ${{ env.GRAALVM_DISTRIBUTION }}-${{ env.MANDREL_VERSION }}
java-version: ${{ env.JAVA_VERSION }}