Skip to content

Commit 563ca5a

Browse files
mhsmithfreakboy3742webknjaz
authored
Apply suggestions from code review
Co-authored-by: Russell Keith-Magee <[email protected]> Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>
1 parent 16f1230 commit 563ca5a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ jobs:
418418
- uses: actions/checkout@v4
419419
with:
420420
persist-credentials: false
421-
- uses: ./.github/actions/build-android
421+
- name: Build and Test Android
422+
uses: ./.github/actions/build-android
422423
with:
423424
triplet: ${{ matrix.arch }}-linux-android
424425

Android/android.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,10 @@ def package(context):
680680
# Strip debug information.
681681
if not context.debug:
682682
run(
683-
[android_env(context.host)["STRIP"]]
684-
+ glob(f"{temp_dir}/**/*.so", recursive=True),
683+
[
684+
android_env(context.host)["STRIP"],
685+
*glob(f"{temp_dir}/**/*.so", recursive=True),
686+
],
685687
log=False,
686688
)
687689

0 commit comments

Comments
 (0)