We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f57f7 commit 913611bCopy full SHA for 913611b
.github/workflows/sdks.yml
@@ -122,9 +122,7 @@ jobs:
122
123
cd sdk-config
124
125
- for arch in aarch64 x86_64 armv7; do
126
- ANDROID_ARCH=$arch BUILD_SWIFT_PM=1 ${TOOLCHAIN}/bin/swift get-packages-and-swift-source.swift
127
- done
+ ANDROID_ARCH=aarch64 BUILD_SWIFT_PM=1 ${TOOLCHAIN}/bin/swift get-packages-and-swift-source.swift
128
129
git apply swift-android.patch
130
git apply -C1 swift-android-ci.patch
@@ -151,6 +149,9 @@ jobs:
151
149
mv sysroot $SYSROOT
152
150
153
for arch in aarch64 x86_64 armv7; do
+ if [[ $arch != 'aarch64' ]]; then
+ ANDROID_ARCH=$arch BUILD_SWIFT_PM=1 ${TOOLCHAIN}/bin/swift get-packages-and-swift-source.swift
154
+ fi
155
SDK_NAME=$(ls | grep swift-${{ matrix.version }}-android-$arch)
156
SDK=`pwd`/$SDK_NAME
157
0 commit comments