We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f1230 commit 563ca5aCopy full SHA for 563ca5a
.github/workflows/build.yml
@@ -418,7 +418,8 @@ jobs:
418
- uses: actions/checkout@v4
419
with:
420
persist-credentials: false
421
- - uses: ./.github/actions/build-android
+ - name: Build and Test Android
422
+ uses: ./.github/actions/build-android
423
424
triplet: ${{ matrix.arch }}-linux-android
425
Android/android.py
@@ -680,8 +680,10 @@ def package(context):
680
# Strip debug information.
681
if not context.debug:
682
run(
683
- [android_env(context.host)["STRIP"]]
684
- + glob(f"{temp_dir}/**/*.so", recursive=True),
+ [
+ android_env(context.host)["STRIP"],
685
+ *glob(f"{temp_dir}/**/*.so", recursive=True),
686
+ ],
687
log=False,
688
)
689
0 commit comments