-
Notifications
You must be signed in to change notification settings - Fork 3
454 lines (388 loc) · 15.8 KB
/
ci.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
name: CI
on:
pull_request:
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
tags-ignore:
- v*
permissions:
contents: read
concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: samples-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
name: Basic checks
runs-on: ubuntu-22.04
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Restore Coursier cache
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: |
~/.cache/coursier
~/.sbt
~/.ivy2/cache
key: coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
restore-keys: |
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-
coursier-
- name: Set up JDK 21
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
- name: Run javafmt checks
run: |
sbt --client javafmtCheckAll || \
{ echo "[error] Code not formatted prior to commit. Run 'sbt javafmtAll' then commit the reformatted code."; false; }
- name: Run header checks
run: |
sbt --client headerCheckAll || \
{ echo "[error] Code missing headers prior to commit. Run 'sbt headerCreateAll' then commit the updated code."; false; }
- name: Run scalafmt checks
run: |
sbt --client "scalafmtCheckAll; scalafmtSbtCheck" || \
{ echo "[error] Code not formatted prior to commit. Run 'sbt scalafmtAll scalafmtSbt' then commit the reformatted code."; false; }
- name: sbt shutdown
run: |
sbt --client shutdown
publish-local:
name: Build and publish artifacts and plugins locally
runs-on: ubuntu-22.04
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Cache Coursier cache
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: |
~/.cache/coursier
~/.sbt
~/.ivy2/cache
key: coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
restore-keys: |
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-
coursier-
- name: Set up JDK 21
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
- name: Cache Maven repository
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('akka-javasdk-maven/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and publish artifacts and plugins
id: build_sdk
run: |-
sbt -Ddisable.apidocs=true publishM2 publishLocal
# the SDK_VERSION is later used to run the maven tests (see below)
.github/determine-sdk-version.sh
SDK_VERSION="$(cat ~/akka-javasdk-version.txt)"
echo "SDK version: '${SDK_VERSION}'"
- name: Build maven
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
cd akka-javasdk-maven
echo "Running maven with SDK version: '${SDK_VERSION}'"
../.github/patch-maven-versions.sh
mvn verify install --no-transfer-progress -Dskip.docker=true
- name: Package io.akka dependencies
run: |-
cd
tar -czf dependencies.tar.gz .m2/repository/io/akka/ .ivy2/local/io.akka/ akka-javasdk-version.txt
- name: Upload io.akka dependencies
# https://github.com/actions/upload-artifact/releases
# v4.3.2
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
with:
name: m2-cache
path: ~/dependencies.tar.gz
if-no-files-found: error
retention-days: 1
sbt-test:
name: Run sbt test
needs: [checks, publish-local]
runs-on: ubuntu-22.04
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Restore Coursier cache
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: |
~/.cache/coursier
~/.sbt
~/.ivy2/cache
key: coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
restore-keys: |
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-
coursier-
- name: Set up JDK 21
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
- name: Download io.akka dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.akka dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: sbt test
run: sbt test
java-sdk-annotation-processor-test:
name: Run annotation processor tests
needs: [checks, publish-local]
runs-on: ubuntu-22.04
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Restore Coursier cache
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: |
~/.cache/coursier
~/.sbt
~/.ivy2/cache
key: coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
restore-keys: |
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-${{ hashFiles('build.sbt', 'project/**.scala', 'project/**.sbt') }}
coursier-${{ hashFiles('project/plugins.sbt', 'project/build.properties') }}-
coursier-
- name: Set up JDK 21
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
- name: Download io.akka dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.akka dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Compile and Run annotation-processor-tests
run: sbt "akka-javasdk-annotation-processor-tests/compile;akka-javasdk-annotation-processor-tests/test"
check-docker-image-contents:
name: Check service docker image contents
needs: [ checks, publish-local ] # usually done via now disabled check-samples-in-ci
runs-on: ubuntu-22.04
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Set up JDK 21
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
- name: Cache Maven repository
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('akka-javasdk-maven/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Download io.akka dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.akka dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Update sdk version in shopping-cart-quickstart
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
./updateSdkVersions.sh java samples/shopping-cart-quickstart
- name: Verify shopping-cart-quickstart docker build
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
cd samples/shopping-cart-quickstart
mvn install --no-transfer-progress
echo "Docker image contents"
tar tvf target/docker/shopping-cart-quickstart/latest/tmp/docker-build.tar
tar tvf target/docker/shopping-cart-quickstart/latest/tmp/docker-build.tar > content-list.txt
for artifact in "akka-actor" "akka-http-core" "kalix-dev-runtime"
do
if grep -q "$artifact" "content-list.txt"; then
echo "Docker image contained $artifact, it shouldn't"
exit 1
fi
done
maven-samples:
name: Maven samples
# needs: check-samples-in-ci
needs: [checks, publish-local] # usually done via now disabled check-samples-in-ci
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { sample: shopping-cart-quickstart, it: true }
- { sample: choreography-saga-quickstart, it: true }
- { sample: doc-snippets, it: false }
- { sample: view-store, it: true }
- { sample: spring-dependency-injection, it: true }
- { sample: event-sourced-customer-registry, it: true }
- { sample: event-sourced-counter-brokers, pre_cmd: 'docker compose up -d', it: true }
- { sample: event-sourced-customer-registry-subscriber, it: true, pre_cmd: './start-upstream.sh' }
- { sample: key-value-counter, it: true }
- { sample: key-value-shopping-cart, it: true }
- { sample: key-value-customer-registry, it: true }
- { sample: tracing, it: false }
- { sample: reliable-timers, it: true }
- { sample: transfer-workflow, it: true }
- { sample: transfer-workflow-compensation, it: true }
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
- name: Set up JDK 21
# https://github.com/coursier/setup-action/releases
# v1.3.5
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
with:
jvm: temurin:1.21
- name: Cache Maven repository
# https://github.com/actions/cache/releases
# v4.0.2
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('akka-javasdk-maven/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Download io.akka dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.akka dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Update sdk version in samples
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
./updateSdkVersions.sh java samples/
- name: ${{ matrix.sample }} test-compile
env:
DIR: ${{ matrix.sample }}
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
cd samples/${DIR}
echo "Running mvn on ${DIR} with SDK version: '${SDK_VERSION}'"
# must also compile without the profile!
mvn test-compile --no-transfer-progress
- name: ${{ matrix.sample }} verify
if: matrix.verify || matrix.it
env:
DIR: ${{ matrix.sample }}
PRE_CMD: ${{ matrix.pre_cmd }}
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
./updateSdkVersions.sh java samples/${DIR}
cd samples/${DIR}
if [ true == '${{matrix.verify}}' ]; then
mvn verify --no-transfer-progress
fi
if [ true == '${{matrix.it}}' ]; then
${PRE_CMD}
KALIX_TESTKIT_DEBUG=true mvn verify -Pit --no-transfer-progress
fi
- name: ${{ matrix.sample }} rm & test-compile
env:
DIR: ${{ matrix.sample }}
run: |-
export SDK_VERSION=$(cat ~/akka-javasdk-version.txt)
cd samples/${DIR}
echo "==== Verifying that generated unmanaged sources compile ===="
rm -rf src/main/java src/test/java src/it/java
mvn test-compile --no-transfer-progress