-
Notifications
You must be signed in to change notification settings - Fork 61
431 lines (388 loc) · 14.4 KB
/
include-check-cache.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
# Check if we actually need to build any of the packages and if not, this job will prepare the artifacts
# required by downstream jobs.
#
# Cache hits are detected by hashing all relevant files. This is required as we might be running CI on
# multiple commits on the same branch.
#
# There is a small chance the cache gets invalidated between this check and downstream jobs run.
# This is acceptable as the work-around is just rerunning the build.
#
# Some notes on caching and artifacts:
# https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows
# - Caches are restricted to current back and fall back to default branch (master)
# - Caches cannot be downloaded to a new location.
# - Artifacts are restricted to current workflow.
#
name: Check cache
on:
workflow_call:
outputs:
version-label:
value: ${{ jobs.checksum.outputs.version-label }}
packages-sha:
value: ${{ jobs.checksum.outputs.packages-sha }}
benchmarks-sha:
value: ${{ jobs.checksum.outputs.benchmarks-sha }}
core-commit-sha:
value: ${{ jobs.checksum.outputs.core-commit-sha }}
packages-metadata-cache-hit:
value: ${{ jobs.metadata-compiler-plugin.outputs.packages-metadata-cache-hit }}
packages-jvm-cache-hit:
value: ${{ jobs.jvm-all.outputs.packages-jvm-cache-hit }}
packages-android-cache-hit:
value: ${{ jobs.android.outputs.packages-android-cache-hit }}
android-test-base-apk-cache-hit:
value: ${{ jobs.android-test-base.outputs.android-test-base-apk-cache-hit }}
android-test-sync-apk-cache-hit:
value: ${{ jobs.android-test-sync.outputs.android-test-sync-apk-cache-hit }}
packages-macos-x64-cache-hit:
value: ${{ jobs.macos-x64.outputs.packages-macos-x64-cache-hit }}
packages-macos-arm64-cache-hit:
value: ${{ jobs.macos-arm.outputs.packages-macos-arm64-cache-hit }}
packages-ios-x64-cache-hit:
value: ${{ jobs.ios-x64.outputs.packages-ios-x64-cache-hit }}
packages-ios-arm64-cache-hit:
value: ${{ jobs.ios-arm.outputs.packages-ios-arm64-cache-hit }}
jni-swig-stub-cache-hit:
value: ${{ jobs.jni-stub.outputs.jni-swig-stub-cache-hit }}
jni-linux-lib-cache-hit:
value: ${{ jobs.jni-linux-lib.outputs.jni-linux-lib-cache-hit }}
jni-macos-lib-cache-hit:
value: ${{ jobs.jni-macos-lib.outputs.jni-macos-lib-cache-hit }}
jni-windows-lib-cache-hit:
value: ${{ jobs.jni-windows-lib.outputs.jni-windows-lib-cache-hit }}
jobs:
checksum:
runs-on: ubuntu-latest
name: Cache SHA
outputs:
version-label: ${{ steps.find-library-version.outputs.label }}
packages-sha: ${{ steps.packages-cache-key.outputs.sha }}
benchmarks-sha: ${{ steps.calculate-benchmarks-cache-key.outputs.sha }}
core-commit-sha: ${{ steps.calculate-core-versioncommmit-sha.outputs.commit }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Find library version
id: find-library-version
run: |
version=$(grep "const val version" buildSrc/src/main/kotlin/Config.kt | cut -d \" -f2)
echo "Label: $version"
echo "label=$version" >> $GITHUB_OUTPUT
# This also include changes to Realm Core as they are hashed as part of `/packages/external/core`
- name: Calculate ./packages SHAs
id: packages-cache-key
run: echo "sha=${{ hashFiles('./packages/**', './buildSrc/**') }}" >> $GITHUB_OUTPUT
- name: Calculate ./benchmarks SHAs
id: calculate-benchmarks-cache-key
run: echo "sha=${{ hashFiles('./benchmarks/**') }}" >> $GITHUB_OUTPUT
- name: Calculate Realm Core commit SHA
id: calculate-core-commit-sha
working-directory: packages/external/core
run: echo "commit=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
#
# Kotlin Metadata and Gradle/Compiler Plugin
#
metadata-compiler-plugin:
runs-on: ubuntu-latest
name: Metadata & Compiler plugin
needs: checksum
outputs:
packages-metadata-cache-hit: ${{ steps.kotlin-metadata-cache.outputs.cache-hit }}
steps:
- name: Check Kotlin Metadata cache
id: kotlin-metadata-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-metadata-${{ needs.checksum.outputs.packages-sha }}
- name: Save Kotlin Metadata packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.kotlin-metadata-cache.outputs.cache-hit == 'true'
with:
name: packages-metadata-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1
#
# JVM (All platforms)
#
jvm-all:
runs-on: ubuntu-latest
needs: checksum
name: JVM (All platforms)
outputs:
packages-jvm-cache-hit: ${{ steps.jvm-cache.outputs.cache-hit }}
steps:
- name: Check JVM cache
id: jvm-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-jvm-sync-${{ needs.checksum.outputs.packages-sha }}
- name: Save JVM packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.jvm-cache.outputs.cache-hit == 'true'
with:
name: packages-jvm-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1
#
# JNI Stub (JVM)
#
jni-stub:
runs-on: ubuntu-latest
needs: checksum
name: JNI Stub (JVM)
outputs:
jni-swig-stub-cache-hit: ${{ steps.jni-swig-stub-cache.outputs.cache-hit }}
steps:
- name: Check JNI Swig stub cache
id: jni-swig-stub-cache
uses: actions/cache@v4
with:
path: ./packages/jni-swig-stub/build/generated/sources/jni
key: jni-swig-stubs-${{ needs.checksum.outputs.packages-sha }}
- name: Save JNI Stub packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.jni-swig-stub-cache.outputs.cache-hit == 'true'
with:
name: jni-stub-${{ needs.checksum.outputs.version-label }}
path: ./packages/jni-swig-stub/build/generated/sources/jni/*
retention-days: 1
#
# JNI MacOS Lib
#
jni-macos-lib:
runs-on: ubuntu-latest
needs: checksum
name: JNI MacOS Lib
outputs:
jni-macos-lib-cache-hit: ${{ steps.jni-macos-lib-cache.outputs.cache-hit }}
steps:
- name: Check JNI MacOS lib cache
id: jni-macos-lib-cache
uses: actions/cache@v4
with:
path: ./packages/cinterop/build/realmMacOsBuild
key: jni-macos-lib-${{ needs.checksum.outputs.packages-sha }}
- name: Save JNI MacOS lib package
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.jni-macos-lib-cache.outputs.cache-hit == 'true'
with:
name: jni-macos-lib-${{ needs.checksum.outputs.version-label }}
path: ./packages/cinterop/build/realmMacOsBuild/**/*
retention-days: 1
#
# JNI Linux Lib
#
jni-linux-lib:
runs-on: ubuntu-latest
needs: checksum
name: JNI Linux Lib
outputs:
jni-linux-lib-cache-hit: ${{ steps.jni-linux-lib-cache.outputs.cache-hit }}
steps:
- name: Check JNI Linux lib cache
id: jni-linux-lib-cache
uses: actions/cache@v4
with:
path: ./packages/cinterop/build/realmLinuxBuild
key: jni-linux-lib-${{ needs.checksum.outputs.packages-sha }}
- name: Save JNI Linux lib package
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.jni-linux-lib-cache.outputs.cache-hit == 'true'
with:
name: jni-linux-lib-${{ needs.checksum.outputs.version-label }}
path: ./packages/cinterop/build/realmLinuxBuild/**/*
retention-days: 1
#
# JNI Windows Lib
#
jni-windows-lib:
runs-on: ubuntu-latest
needs: checksum
name: JNI Windows Lib
outputs:
jni-windows-lib-cache-hit: ${{ steps.jni-windows-lib-cache.outputs.cache-hit }}
steps:
- name: Check JNI Windows lib cache
id: jni-windows-lib-cache
uses: actions/cache@v4
with:
path: ./packages/cinterop/build/realmWindowsBuild
key: jni-windows-lib-${{ needs.checksum.outputs.packages-sha }}
enableCrossOsArchive: true
- name: Save JNI Windows lib package
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.jni-windows-lib-cache.outputs.cache-hit == 'true'
with:
name: jni-windows-lib-${{ needs.checksum.outputs.version-label }}
path: ./packages/cinterop/build/realmWindowsBuild/Release/realmc.dll
retention-days: 1
#
# Android
#
android:
runs-on: ubuntu-latest
needs: checksum
name: Android
outputs:
packages-android-cache-hit: ${{ steps.android-cache.outputs.cache-hit }}
steps:
- name: Check Android cache
id: android-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-android-sync-${{ needs.checksum.outputs.packages-sha }}
- name: Save Android packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.android-cache.outputs.cache-hit == 'true'
with:
name: packages-android-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1
#
# Android Base Test APK
#
android-test-base:
runs-on: ubuntu-latest
needs: checksum
name: Android Base Test APK
outputs:
android-test-base-apk-cache-hit: ${{ steps.android-test-base-apk.outputs.cache-hit }}
steps:
- name: Check Android Base Test APK
id: android-test-base-apk
uses: actions/cache@v4
with:
path: ./packages/test-base/build/outputs/apk/androidTest/debug/test-base-debug-androidTest.apk
key: android-base-test-apk-key-${{ needs.checksum.outputs.packages-sha }}
- name: Save Android Base Test APK
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.android-test-base-apk.outputs.cache-hit == 'true'
with:
name: android-base-test-apk-${{ needs.checksum.outputs.version-label }}
path: ./packages/test-base/build/outputs/apk/androidTest/debug/test-base-debug-androidTest.apk
retention-days: 1
#
# Android Sync Test APK
#
android-test-sync:
runs-on: ubuntu-latest
needs: checksum
name: Android Sync Test APK
outputs:
android-test-sync-apk-cache-hit: ${{ steps.android-test-sync-apk.outputs.cache-hit }}
steps:
- name: Check Android Sync Test APK
id: android-test-sync-apk
uses: actions/cache@v4
with:
key: android-sync-test-apk-key-${{ needs.checksum.outputs.packages-sha }}
path: |
./packages/test-sync/build/outputs/apk/androidTest/debug/test-sync-debug-androidTest.apk
./packages/test-sync/build/outputs/apk/debug/test-sync-debug.apk
- name: Save Android Sync Test APK
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.android-test-sync-apk.outputs.cache-hit == 'true'
with:
name: android-sync-test-apk-${{ needs.checksum.outputs.version-label }}
retention-days: 1
path: |
./packages/test-sync/build/outputs/apk/androidTest/debug/test-sync-debug-androidTest.apk
./packages/test-sync/build/outputs/apk/debug/test-sync-debug.apk
#
# MacOS arm64
#
macos-arm:
runs-on: ubuntu-latest
needs: checksum
name: MacOS arm64
outputs:
packages-macos-arm64-cache-hit: ${{ steps.macos-arm64-cache.outputs.cache-hit }}
steps:
- name: Check MacOS arm64 cache
id: macos-arm64-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-macos-arm64-sync-${{ needs.checksum.outputs.packages-sha }}
- name: Save MacOS arm64 packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.macos-arm64-cache.outputs.cache-hit == 'true'
with:
name: packages-macos-arm64-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1
#
# MacOS x64
#
macos-x64:
runs-on: ubuntu-latest
needs: checksum
name: MacOS x64
outputs:
packages-macos-x64-cache-hit: ${{ steps.macos-x64-cache.outputs.cache-hit }}
steps:
- name: Check MacOS X64 cache
id: macos-x64-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-macos-x64-sync-${{ needs.checksum.outputs.packages-sha }}
- name: Save MacOS x64 packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.macos-x64-cache.outputs.cache-hit == 'true'
with:
name: packages-macos-x64-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1
#
# iOS arm64
#
ios-arm:
runs-on: ubuntu-latest
needs: checksum
name: iOS arm64
outputs:
packages-ios-arm64-cache-hit: ${{ steps.ios-arm64-cache.outputs.cache-hit }}
steps:
- name: Check iOS arm64 cache
id: ios-arm64-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-ios-arm64-sync-${{ needs.checksum.outputs.packages-sha }}
- name: Save iOS arm64 packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.ios-arm64-cache.outputs.cache-hit == 'true'
with:
name: packages-ios-arm64-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1
#
# iOS x64
#
ios-x64:
runs-on: ubuntu-latest
needs: checksum
name: iOS x64
outputs:
packages-ios-x64-cache-hit: ${{ steps.ios-x64-cache.outputs.cache-hit }}
steps:
- name: Check iOS X64 cache
id: ios-x64-cache
uses: actions/cache@v4
with:
path: ./packages/build/m2-buildrepo
key: packages-m2-ios-x64-sync-${{ needs.checksum.outputs.packages-sha }}
- name: Save iOS x64 packages
uses: actions/upload-artifact@v4
if: always() && !cancelled() && steps.ios-x64-cache.outputs.cache-hit == 'true'
with:
name: packages-ios-x64-${{ needs.checksum.outputs.version-label }}
path: ./packages/build/m2-buildrepo/**/*
retention-days: 1