Skip to content

Commit c02d508

Browse files
authored
Fix Android CI (#3837)
Need the entire content from build and upload aar (#3381) to make AAR build work
1 parent 64c0e59 commit c02d508

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.ci/docker/common/install_base.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ install_ubuntu() {
2323
unzip \
2424
gdb \
2525
rsync \
26-
libssl-dev
26+
libssl-dev \
27+
zip
2728

2829
# Cleanup package manager
2930
apt-get autoclean && apt-get clean

.github/workflows/android.yml

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ jobs:
6060
cp cmake-out-android-arm64-v8a/extension/android/*.so artifacts-to-be-uploaded/arm64-v8a/
6161
cp cmake-out-android-x86_64/lib/*.a artifacts-to-be-uploaded/x86_64/
6262
cp cmake-out-android-x86_64/extension/android/*.so artifacts-to-be-uploaded/x86_64/
63+
# Copyp AAR to S3
64+
cp build_aar/executorch.aar artifacts-to-be-uploaded/
65+
cp build_aar/executorch-llama.aar artifacts-to-be-uploaded/
6366
6467
# Upload the app and its test suite to S3 so that they can be downloaded by the test job
6568
upload-artifacts:

0 commit comments

Comments
 (0)