summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorketsuban <ketsuban@kukuri.dev>2026-09-03 12:27:52 +0000
committerketsuban <ketsuban@kukuri.dev>2026-09-03 12:27:52 +0000
commit8503830f47ba885579311cbcd80b362255d8c2c4 (patch)
tree22c108a3a2c71692480b382cc866df43f415363d /.github
parent2c4001f6ad589f450bd3d9db7708c48b12070dd9 (diff)
downloadkukuri-main.tar.gz
kukuri-main.tar.bz2
kukuri-main.zip
ios: gradle/konan cache in Actions; buildbot waits for the ios run and ships its artifact to lighttpd; run-worker.sh: mount git_pass+github_tokenmain
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ios.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml
index 490472c..d438c00 100644
--- a/.github/workflows/ios.yml
+++ b/.github/workflows/ios.yml
@@ -11,6 +11,17 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - name: Gradle & Konan cache (warm build across runs)
+ uses: actions/cache@v4
+ with:
+ path: |
+ ~/.gradle/caches
+ ~/.gradle/wrapper
+ ~/.konan
+ key: ios-${{ runner.os }}-${{ hashFiles('gradle/libs.versions.toml', 'gradle/wrapper/gradle-wrapper.properties', '**/*.gradle.kts') }}
+ restore-keys: |
+ ios-${{ runner.os }}-
+
- name: JDK 21
uses: actions/setup-java@v4
with: