File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 75
75
if : ${{ matrix.platform.android-ndk }}
76
76
id : setup-ndk
77
77
with :
78
- local-cache : true
78
+ local-cache : false
79
79
ndk-version : r28c
80
80
- name : ' Configure Android NDK variables'
81
81
if : ${{ matrix.platform.android-ndk }}
Original file line number Diff line number Diff line change @@ -534,7 +534,7 @@ jobs:
534
534
- name : ' Setup Android NDK'
535
535
uses : nttld/setup-ndk@v1
536
536
with :
537
- local-cache : true
537
+ local-cache : false
538
538
ndk-version : r28c
539
539
- name : ' Setup Java JDK'
540
540
uses : actions/setup-java@v4
@@ -607,8 +607,14 @@ jobs:
607
607
python "${{ needs.src.outputs.project }}-${{ needs.src.outputs.version }}.aar" -o /tmp/SDL3-android
608
608
echo "prefix=/tmp/SDL3-android" >>$GITHUB_OUTPUT
609
609
echo "sdl3-aar=/tmp/${{ needs.src.outputs.project }}-${{ needs.src.outputs.version }}.aar" >>$GITHUB_OUTPUT
610
+ - name : ' Verify alignment of libSDL3.so (arm64-v8a/x86_64)'
611
+ run : |
612
+ set -e
613
+ ${{ steps.src.outputs.path }}/build-scripts/check_elf_alignment.sh ${{ steps.sdk.outputs.prefix }}/lib/arm64-v8a/libSDL3.so
614
+ ${{ steps.src.outputs.path }}/build-scripts/check_elf_alignment.sh ${{ steps.sdk.outputs.prefix }}/lib/x86_64/libSDL3.so
610
615
- name : ' CMake (configure + build) x86, x64, arm32, arm64'
611
616
run : |
617
+ set -e
612
618
android_abis="x86 x86_64 armeabi-v7a arm64-v8a"
613
619
for android_abi in ${android_abis}; do
614
620
echo "Configuring ${android_abi}..."
You can’t perform that action at this time.
0 commit comments