We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a95fcb7 commit e893cb7Copy full SHA for e893cb7
.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
@@ -150,6 +148,9 @@ jobs:
150
148
mv sysroot $SYSROOT
151
149
152
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
153
+ fi
154
SDK_NAME=$(ls | grep swift-${{ matrix.version }}-android-$arch)
155
SDK=`pwd`/$SDK_NAME
156
0 commit comments