-
-
Notifications
You must be signed in to change notification settings - Fork 543
566 lines (529 loc) · 22.1 KB
/
build-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
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
name: Check
on:
pull_request:
push:
branches:
- main # Check branch after merge
concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
# check-code-style:
# name: Code Style
# uses: playframework/.github/.github/workflows/cmd.yml@v3
# with:
# cmd: sbt validateCode
changes:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
samples: ${{ steps.filter.outputs.changes }}
steps:
# For pull requests it's not necessary to checkout the code
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
java-chatroom: java/chatroom/**
java-compile-di: java/compile-di/**
java-dagger2: java/dagger2/**
java-ebean: java/ebean/**
java-fileupload: java/fileupload/**
java-forms: java/forms/**
java-grpc: java/grpc/**
java-hello-world: java/hello-world/**
java-jpa: java/jpa/**
java-pekko-cluster: java/pekko-cluster/**
java-rest-api: java/rest-api/**
java-starter: java/starter/**
java-streaming: java/streaming/**
java-websocket: java/websocket/**
scala-anorm: scala/anorm/**
scala-chatroom: scala/chatroom/**
scala-compile-di: scala/compile-di/**
scala-fileupload: scala/fileupload/**
scala-forms: scala/forms/**
scala-grpc: scala/grpc/**
scala-hello-world: scala/hello-world/**
scala-isolated-slick: scala/isolated-slick/**
scala-log4j2: scala/log4j2/**
scala-macwire-di: scala/macwire-di/**
scala-rest-api: scala/rest-api/**
scala-secure-session: scala/secure-session/**
scala-slick: scala/slick/**
scala-starter: scala/starter/**
scala-streaming: scala/streaming/**
scala-tls: scala/tls/**
scala-websocket: scala/websocket/**
java-chatroom:
name: "Java :: Chatroom"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-chatroom')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/chatroom
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/chatroom --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-compile-di:
name: "Java :: Compile DI"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-compile-di')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/compile-di
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/compile-di --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-dagger2:
name: "Java :: Dagger2"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-dagger2')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/dagger2
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/dagger2 --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-ebean:
name: "Java :: EBean"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-ebean')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/ebean
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/ebean --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-fileupload:
name: "Java :: File Upload"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-fileupload')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/fileupload
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/fileupload --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-forms:
name: "Java :: Forms"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-forms')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/forms
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/forms --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-grpc:
name: "Java :: gRPC"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-grpc')}}
with:
# Can't test with Java 21+ currently because of https://github.com/lightbend/ssl-config/issues/367
java: 17
scala: 2.13.x, 3.x
gradle-build-root: java/grpc
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt"] }
cmd: |
./test.sh --sample=java/grpc --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-hello-world:
name: "Java :: Hello World"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-hello-world')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/hello-world
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/hello-world --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-jpa:
name: "Java :: JPA"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-jpa')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/jpa
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/jpa --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-pekko-cluster:
name: "Java :: Pekko Cluster"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-pekko-cluster')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/pekko-cluster
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/pekko-cluster --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-rest-api:
name: "Java :: REST API"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-rest-api')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/rest-api
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/rest-api --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-starter:
name: "Java :: Starter"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-starter')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/starter
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/starter --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-streaming:
name: "Java :: Streaming"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-streaming')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/streaming
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/streaming --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
java-websocket:
name: "Java :: WebSocket"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-websocket')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: java/websocket
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=java/websocket --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-anorm:
name: "Scala :: Anorm"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-anorm')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/anorm
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt"] }
cmd: |
./test.sh --sample=scala/anorm --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-chatroom:
name: "Scala :: Chatroom"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-chatroom')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/chatroom
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/chatroom --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-compile-di:
name: "Scala :: Compile DI"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-compile-di')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/compile-di
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/compile-di --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-fileupload:
name: "Scala :: File Upload"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-fileupload')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/fileupload
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/fileupload --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-forms:
name: "Scala :: Forms"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-forms')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/forms
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/forms --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-grpc:
name: "Scala :: gRPC"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-grpc')}}
with:
# Can't test with Java 21+ currently because of https://github.com/lightbend/ssl-config/issues/367
java: 17
scala: 2.13.x, 3.x
gradle-build-root: scala/grpc
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt"] }
cmd: |
./test.sh --sample=scala/grpc --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-hello-world:
name: "Scala :: Hello World"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-hello-world')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/hello-world
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/hello-world --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-isolated-slick:
name: "Scala :: Slick (isolated)"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-isolated-slick')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/isolated-slick
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt"] }
cmd: |
./test.sh --sample=scala/isolated-slick --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-log4j2:
name: "Scala :: Log4j2"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-log4j2')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/log4j2
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/log4j2 --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-macwire-di:
name: "Scala :: Macwire DI"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-macwire-di')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/macwire-di
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/macwire-di --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-rest-api:
name: "Scala :: REST API"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-rest-api')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/rest-api
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
exclude: >-
[{ "server": "netty", "build_tool": "gradle" }]
cmd: |
./test.sh --sample=scala/rest-api --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-secure-session:
name: "Scala :: Secure Session"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-secure-session')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/secure-session
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/secure-session --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-slick:
name: "Scala :: Slick"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-slick')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/slick
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt"] }
cmd: |
./test.sh --sample=scala/slick --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-starter:
name: "Scala :: Starter"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-starter')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/starter
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/starter --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-streaming:
name: "Scala :: Streaming"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-streaming')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/streaming
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/streaming --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-tls:
name: "Scala :: TLS"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-tls')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/tls
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt"] }
cmd: |
./test.sh --sample=scala/tls --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
scala-websocket:
name: "Scala :: WebSocket"
uses: playframework/.github/.github/workflows/cmd.yml@v4
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-websocket')}}
with:
java: 17, 21
scala: 2.13.x, 3.x
gradle-build-root: scala/websocket
add-dimensions: >-
{ "server": [ "pekko", "netty"], "build_tool": ["sbt", "gradle"] }
cmd: |
./test.sh --sample=scala/websocket --backend-server=$MATRIX_SERVER --build-tool=$MATRIX_BUILD_TOOL
finish:
name: Finish
if: ${{ github.event_name == 'pull_request' && !failure() && !cancelled() }}
needs: # Should be last
- "java-chatroom"
- "java-compile-di"
- "java-dagger2"
- "java-ebean"
- "java-fileupload"
- "java-forms"
- "java-grpc"
- "java-hello-world"
- "java-jpa"
- "java-pekko-cluster"
- "java-rest-api"
- "java-starter"
- "java-streaming"
- "java-websocket"
- "scala-anorm"
- "scala-chatroom"
- "scala-compile-di"
- "scala-fileupload"
- "scala-forms"
- "scala-grpc"
- "scala-hello-world"
- "scala-isolated-slick"
- "scala-log4j2"
- "scala-macwire-di"
- "scala-rest-api"
- "scala-secure-session"
- "scala-slick"
- "scala-starter"
- "scala-streaming"
- "scala-tls"
- "scala-websocket"
uses: playframework/.github/.github/workflows/rtm.yml@v4