File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,10 @@ jobs:
230
230
PYTHON_EXECUTABLE=python bash .ci/scripts/setup-qnn-deps.sh
231
231
PYTHON_EXECUTABLE=python bash .ci/scripts/build-qnn-sdk.sh
232
232
fi
233
-
233
+
234
234
# TODO: This needs to be replaced with a generic loader .apk
235
235
# Build LLM Demo for Android
236
+ export ANDROID_ABIS="arm64-v8a"
236
237
bash build/build_android_llm_demo.sh ${ARTIFACTS_DIR_NAME}
237
238
238
239
# Upload artifacts to S3. The artifacts are needed not only by the device farm but also TorchChat
Original file line number Diff line number Diff line change @@ -139,7 +139,9 @@ collect_artifacts_to_be_uploaded() {
139
139
140
140
BUILD_AAR_DIR=" $( mktemp -d) "
141
141
export BUILD_AAR_DIR
142
- ANDROID_ABIS=(" arm64-v8a" " x86_64" )
142
+ if [ -z " $ANDROID_ABIS " ]; then
143
+ ANDROID_ABIS=(" arm64-v8a" " x86_64" )
144
+ fi
143
145
export ANDROID_ABIS
144
146
145
147
ARTIFACTS_DIR_NAME=" $1 "
You can’t perform that action at this time.
0 commit comments