Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
BUILD_ABI: armeabi-v7a,arm64-v8a,x86,x86_64
steps:
- name: Fetch source code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
./gradlew :app:calculateNativeCacheHash

- name: Fetch JNI cache
uses: actions/cache@v4
uses: actions/cache@v5
id: jni-cache
with:
path: "app/prebuilt"
Expand All @@ -80,23 +80,23 @@ jobs:
run: cp -R app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib app/prebuilt

- name: Upload APK artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: trime-${{ matrix.os }}
path: app/build/outputs/apk/debug/
# keep 90 days
retention-days: 90

- name: Upload APK artifact (ARM64_V8A only)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: trime-arm64-v8a-${{ matrix.os }}
path: app/build/outputs/apk/debug/*arm64-v8a-*.apk
# keep 90 days
retention-days: 90

- name: Upload JNI artifact (librime_jni.so)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: librime_jni-${{ matrix.os }}
path: app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -42,7 +42,7 @@ jobs:
./gradlew :app:calculateNativeCacheHash
- name: Fetch JNI cache
uses: actions/cache@v4
uses: actions/cache@v5
id: jni-cache
with:
path: "app/prebuilt"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
BUILD_ABI: armeabi-v7a,arm64-v8a,x86,x86_64
steps:
- name: Fetch source code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
./gradlew :app:calculateNativeCacheHash

- name: Fetch JNI cache
uses: actions/cache@v4
uses: actions/cache@v5
id: jni-cache
with:
path: "app/prebuilt"
Expand All @@ -87,7 +87,7 @@ jobs:
run: cp -R app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib app/prebuilt

- name: Upload APK artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: trime-${{ matrix.os }}
path: app/build/outputs/apk/debug/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -41,7 +41,7 @@ jobs:
./gradlew :app:calculateNativeCacheHash
- name: Fetch JNI cache
uses: actions/cache@v4
uses: actions/cache@v5
id: jni-cache
with:
path: "app/prebuilt"
Expand Down
Loading