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