-
Notifications
You must be signed in to change notification settings - Fork 39
797 lines (676 loc) · 29.5 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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
name: CI
on:
pull_request:
push:
branches:
- main
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('maven-java/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 ~/kalix-sdk-version.txt)"
echo "SDK version: '${SDK_VERSION}'"
- name: Build maven-java
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-version.txt)
cd maven-java
echo "Running maven-java with SDK version: '${SDK_VERSION}'"
../.github/patch-maven-versions.sh
mvn verify install --no-transfer-progress -Dskip.docker=true
- name: Package io.kalix dependencies
run: |-
cd
tar -czf dependencies.tar.gz .m2/repository/io/kalix/ .ivy2/local/io.kalix/ kalix-sdk-version.txt
- name: Upload io.kalix 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.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: sbt test
run: sbt test
sbt-scripted:
name: Run sbt scripted
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.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: sbt scripted
run: sbt scripted
maven-java-tests:
name: "Maven Java (plugin and archetype 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: Set up JDK 21
# https://github.com/actions/setup-java/releases/
# v4.2.1
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
with:
distribution: 'temurin'
java-version: '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('maven-java/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Download io.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Value Entity Archetype
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-version.txt)
echo "Testing Value Entity Archetype. SDK_VERSION: ${SDK_VERSION}"
cd maven-java
mvn -B archetype:generate -DgroupId=com.example -DartifactId=counter-value-entity -DarchetypeGroupId=io.kalix -DarchetypeArtifactId=kalix-maven-archetype -DarchetypeVersion=$SDK_VERSION
cd counter-value-entity
mvn -B compile
cd ..
- name: Event Sourced Entity Archetype
run: |-
echo "Testing Event Sourced Entity Archetype. SDK_VERSION: ${SDK_VERSION}"
mvn -B archetype:generate -DgroupId=com.example -DartifactId=counter-event-sourced-entity -DarchetypeGroupId=io.kalix -DarchetypeArtifactId=kalix-maven-archetype-event-sourced-entity -DarchetypeVersion=$SDK_VERSION
cd counter-event-sourced-entity
mvn -B compile
cd ..
java-sdk-integration-tests:
name: "Java SDK integration 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.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: "Java SDK with Spring - Integration Test"
run: sbt javaSdkSpring/IntegrationTest/test
codegen-samples:
name: Codegen Examples
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.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Compile test projects from ExampleSuite (Java)
run: sbt -Dexample.suite.java.enabled codegenJavaCompilationExampleSuite/compile
- name: Compile test projects from ExampleSuite (Scala)
run: sbt -Dexample.suite.scala.enabled codegenScalaCompilationExampleSuite/compile
- name: Check Protoc version in samples
# part of the publish-local pipeline as it requires sbt
run: ./bin/check-sample-protoc-version.sh
check-samples-in-ci:
name: "Check all samples are included in CI build"
needs: [checks, publish-local] # not really, but deferring until more important stuff
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: Ensure all sample projects are listed
run: .github/ci-check-samples.sh
tck-tests:
name: "TCK tests"
needs: 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: 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.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Run Java TCK tests
run: sbt javaTck/Test/run
- name: Run Scala TCK tests
run: sbt scalaTck/Test/run
maven-samples:
name: Maven samples
needs: check-samples-in-ci
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { sample: java-protobuf-shopping-cart-quickstart, it: true }
- { sample: java-protobuf-customer-registry-quickstart, it: true }
- { sample: java-protobuf-customer-registry-kafka-quickstart, pre_cmd: 'docker compose -f ../../.github/kafka.yml up -d', it: true }
- { sample: java-protobuf-customer-registry-views-quickstart, it: true }
- { sample: java-spring-shopping-cart-quickstart, it: true }
- { sample: java-spring-customer-registry-quickstart, it: true }
- { sample: java-spring-customer-registry-views-quickstart, it: true }
- { sample: java-spring-choreography-saga-quickstart, it: true }
- { sample: java-protobuf-fibonacci-action, it: false }
- { sample: java-protobuf-doc-snippets, it: false }
- { sample: java-protobuf-first-service, it: false }
- { sample: java-protobuf-valueentity-customer-registry, it: false }
- { sample: java-protobuf-view-store, it: true }
- { sample: java-spring-fibonacci-action, it: true }
- { sample: java-spring-doc-snippets, it: false }
- { sample: java-spring-view-store, it: true }
- { sample: java-protobuf-eventsourced-customer-registry, it: true }
- { sample: java-protobuf-eventsourced-customer-registry-subscriber, it: true, pre_cmd: 'mvn -f ../java-protobuf-eventsourced-customer-registry/pom.xml package docker:build --no-transfer-progress' }
- { sample: java-protobuf-eventsourced-counter, it: true }
- { sample: java-protobuf-eventsourced-shopping-cart, it: true }
- { sample: java-spring-eventsourced-customer-registry, it: true }
- { sample: java-spring-eventsourced-customer-registry-subscriber, it: true, pre_cmd: 'mvn -f ../java-spring-eventsourced-customer-registry/pom.xml package docker:build --no-transfer-progress' }
- { sample: java-spring-eventsourced-counter, pre_cmd: 'docker compose up gcloud-pubsub-emulator -d', it: true }
- { sample: java-spring-eventsourced-shopping-cart, it: true }
- { sample: java-protobuf-valueentity-counter, it: true }
- { sample: java-protobuf-valueentity-counter-spring-client, verify: true, it: false }
- { sample: java-protobuf-valueentity-shopping-cart, it: true }
- { sample: java-spring-valueentity-counter, it: true }
- { sample: java-spring-valueentity-shopping-cart, it: true }
- { sample: java-spring-valueentity-customer-registry, it: true }
- { sample: java-protobuf-replicatedentity-shopping-cart, it: true }
- { sample: java-protobuf-replicatedentity-examples, it: true }
- { sample: java-protobuf-tracing, it: false }
- { sample: java-spring-tracing, it: false }
- { sample: java-protobuf-web-resources, it: false }
- { sample: java-protobuf-reliable-timers, it: false }
- { sample: java-spring-reliable-timers, it: true }
- { sample: java-spring-transfer-workflow, it: true }
- { sample: java-spring-transfer-workflow-compensation, it: true }
- { sample: java-protobuf-transfer-workflow, it: true }
- { sample: java-protobuf-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('maven-java/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Download io.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: Update sdk version in samples
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-version.txt)
./updateSdkVersions.sh java samples/
- name: ${{ matrix.sample }} test-compile
env:
DIR: ${{ matrix.sample }}
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-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 ~/kalix-sdk-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 ~/kalix-sdk-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
sbt-samples:
name: sbt
needs: check-samples-in-ci
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- { sample: scala-protobuf-customer-registry-quickstart, test: true }
- { sample: scala-protobuf-fibonacci-action, test: true }
- { sample: scala-protobuf-first-service, test: false }
- { sample: scala-protobuf-doc-snippets, test: true }
- { sample: scala-protobuf-valueentity-customer-registry, test: true }
- { sample: scala-protobuf-view-store, test: true }
- { sample: scala-protobuf-eventsourced-customer-registry, test: true }
- { sample: scala-protobuf-eventsourced-customer-registry-subscriber, pre_cmd: './build-customer-service-image.sh', test: true }
- { sample: scala-protobuf-eventsourced-counter, pre_cmd: 'docker compose up gcloud-pubsub-emulator -d', test: true }
- { sample: scala-protobuf-eventsourced-shopping-cart, test: true }
- { sample: scala-protobuf-valueentity-counter, test: true }
- { sample: scala-protobuf-valueentity-shopping-cart, test: true }
- { sample: scala-protobuf-replicatedentity-shopping-cart, test: true }
- { sample: scala-protobuf-replicatedentity-examples, test: true }
- { sample: scala-protobuf-tracing, it: false }
- { sample: scala-protobuf-reliable-timers, test: true }
- { sample: scala-protobuf-web-resources, test: true }
- { sample: scala-protobuf-transfer-workflow, test: true }
- { sample: scala-protobuf-transfer-workflow-compensation, test: true }
- { sample: scala-protobuf-validated, test: 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: 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.kalix dependencies
# https://github.com/actions/download-artifact/releases
# v4.1.5
uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d
with:
name: m2-cache
path: ~/
- name: Unpack io.kalix dependencies
run: |-
cd
tar -xf dependencies.tar.gz
- name: sbt Test/compile
if: matrix.test == false # only run this if not running the next step
env:
DIR: ${{ matrix.sample }}
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-version.txt)
cd samples/${DIR}
echo "Running sbt on ${DIR} with SDK version: '$SDK_VERSION'"
echo "==== Testing with Scala 2.13 ===="
sbt --client -Dkalix-sdk.version=$SDK_VERSION '++2.13.14! Test/compile'
echo "==== Testing with Scala 3 ===="
sbt --client -Dkalix-sdk.version=$SDK_VERSION 'clean; ++3.3.3! Test/compile'
- name: sbt test
if: matrix.test
env:
DIR: ${{ matrix.sample }}
PRE_CMD: ${{ matrix.pre_cmd }}
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-version.txt)
cd samples/${DIR}
${PRE_CMD}
echo "==== Testing with Scala 2.13 ===="
sbt --client -Dkalix-sdk.version=$SDK_VERSION '++2.13.14! test'
echo "==== Testing with Scala 3 ===="
sbt --client -Dkalix-sdk.version=$SDK_VERSION 'clean; ++3.3.3! test'
- name: rm & sbt Test/compile
env:
DIR: ${{ matrix.sample }}
run: |-
export SDK_VERSION=$(cat ~/kalix-sdk-version.txt)
cd samples/${DIR}
echo "==== Verifying that generated unmanaged sources compile with Scala 2.13 ===="
rm -rf src/main/scala src/test/scala src/it/scala
sbt --client -Dkalix-sdk.version=$SDK_VERSION '++2.13.14! Test/compile'
echo "==== Verifying that generated unmanaged sources compile with Scala 3 ===="
sbt --client -Dkalix-sdk.version=$SDK_VERSION 'clean; ++3.3.3! Test/compile'