generated from arrow-kt/Arrow-KMP-Template
-
Notifications
You must be signed in to change notification settings - Fork 4
119 lines (96 loc) · 2.83 KB
/
pull_request.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
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
name: "pull_request"
on: pull_request
env:
GRADLE_OPTS: -Dorg.gradle.daemon=false -Dorg.gradle.kotlin.dsl.internal.io.timeout=120000 -Dorg.gradle.jvmargs="-Xmx5g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8"
concurrency:
group: pull_request-${{ github.ref }}
cancel-in-progress: true
jobs:
ios_watchos:
runs-on: macos-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: ios and watchos tests
uses: gradle/gradle-build-action@v2
with:
arguments: iosSimulatorArm64Test iosX64Test watchosSimulatorArm64Test watchosX64Test watchosX86Test --parallel --scan
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports-ios_watchos'
path: '**/build/reports/**'
macos_tvos:
runs-on: macos-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: macos and tvos tests
uses: gradle/gradle-build-action@v2
with:
arguments: macosArm64Test macosX64Test tvosSimulatorArm64Test tvosX64Test --parallel --scan
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports-macos_tvos'
path: '**/build/reports/**'
windows:
runs-on: windows-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: mingwX64Test
uses: gradle/gradle-build-action@v2
with:
arguments: mingwX64Test --scan
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports-windows'
path: '**/build/reports/**'
build:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: build
uses: gradle/gradle-build-action@v2
with:
arguments: build --scan
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: 'reports-jvmTest'
path: '**/build/reports/**'