Skip to content

Commit 1b41f44

Browse files
committed
Fix check_elf_alignment.sh step
1 parent 5489e75 commit 1b41f44

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build_android_sdk.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
swift-version: ['swift-6.2-branch', 'development']
2727
runs-on: ubuntu-24.04
2828
steps:
29-
- name: Checkout repository
29+
- name: Checkout swift-docker
3030
uses: actions/checkout@v4
3131
with:
3232
#repository: swiftlang/swift-docker
@@ -125,10 +125,15 @@ jobs:
125125
# recent releases require that ANDROID_NDK_ROOT *not* be set
126126
# see https://github.com/swiftlang/swift-driver/pull/1879
127127
echo "ANDROID_NDK_ROOT=" >> $GITHUB_ENV
128+
- name: Checkout swift-android-sdk-build
129+
uses: actions/checkout@v4
130+
with:
131+
repository: swift-android-sdk/swift-android-sdk-build
132+
path: swift-android-sdk-build
128133
- name: Check ELF Alignment
129134
# https://developer.android.com/guide/practices/page-sizes#alignment-use-script
130135
run: |
131-
./scripts/check_elf_alignment.sh ~/.swiftpm/swift-sdks/*.artifactbundle/swift-android/swift-resources/usr/lib/swift-aarch64/android/
136+
./swift-android-sdk-build/scripts/check_elf_alignment.sh ~/.swiftpm/swift-sdks/*.artifactbundle/swift-android/swift-resources/usr/lib/swift-aarch64/android/
132137
- name: Create Demo Project
133138
run: |
134139
cd ${{ runner.temp }}

0 commit comments

Comments
 (0)