-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (47 loc) · 1.24 KB
/
test.yaml
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
name: test
on:
pull_request: {}
push:
branches:
- 'trunk'
env:
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
jobs:
test:
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
job: [jvmTest]
include:
- os: macOS-latest
job: iosX64Test
- os: macOS-latest
job: jvmTest
- os: macOS-latest
job: macosArm64Test
- os: macOS-latest
job: macosX64Test
- os: macOS-latest
job: tvosSimulatorArm64Test
- os: macOS-latest
job: tvosX64Test
- os: macOS-latest
job: watchosSimulatorArm64Test
- os: macOS-latest
job: watchosX64Test
- os: windows-latest
job: jvmTest
- os: windows-latest
job: mingwX64Test
- os: ubuntu-latest
job: jvmTest
- os: ubuntu-latest
job: linuxX64Test
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 19
- run: ./gradlew ${{matrix.job}}