File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# the architecture(s) to build; on GH Actions we build everything
5
5
if [[ -z " ${CI} " ]]; then
6
- TARGET_ARCHS=${TARGET_ARCHS:- x86_64, aarch64}
6
+ TARGET_ARCHS=${TARGET_ARCHS:- aarch64,x86_64 }
7
7
# TARGET_ARCHS=${TARGET_ARCHS:-aarch64}
8
8
else
9
- # TARGET_ARCHS=${TARGET_ARCHS:-aarch64, armv7,x86_64,x86}
9
+ TARGET_ARCHS=${TARGET_ARCHS:- armv7,aarch64 ,x86_64,x86}
10
10
# TARGET_ARCHS=${TARGET_ARCHS:-aarch64,x86_64}
11
- TARGET_ARCHS=${TARGET_ARCHS:- aarch64}
11
+ # TARGET_ARCHS=${TARGET_ARCHS:-aarch64}
12
12
fi
13
13
14
14
ANDROID_NDK_VERSION=android-ndk-r27c
Original file line number Diff line number Diff line change @@ -340,9 +340,9 @@ for arch in $archs; do
340
340
--reconfigure \
341
341
--no-assertions \
342
342
--android \
343
- --android-ndk $ndk_home \
344
- --android-arch $arch \
345
- --android-api-level $android_api \
343
+ --android-ndk= $ndk_home \
344
+ --android-arch= $arch \
345
+ --android-api-level= $android_api \
346
346
--native-swift-tools-path=$host_toolchain /bin \
347
347
--native-clang-tools-path=$host_toolchain /bin \
348
348
--cross-compile-hosts=android-$arch \
@@ -360,5 +360,7 @@ for arch in $archs; do
360
360
--swift-testing --install-swift-testing \
361
361
--cross-compile-append-host-target-to-destdir=False
362
362
quiet_popd
363
+
364
+ header " Completed build for $arch in $sdk_root "
363
365
done
364
366
You can’t perform that action at this time.
0 commit comments