File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 44
44
export ARTIFACTS_DIR_NAME=artifacts-to-be-uploaded
45
45
46
46
# Build LLM Demo for Android
47
- # bash build/build_android_llm_demo.sh ${ARTIFACTS_DIR_NAME}
47
+ bash build/build_android_llm_demo.sh ${ARTIFACTS_DIR_NAME}
48
48
49
- mkdir -p "${ARTIFACTS_DIR_NAME}/llm_demo"
50
- touch "${ARTIFACTS_DIR_NAME}/llm_demo/executorch.aar"
49
+ shasum -a 256 "${ARTIFACTS_DIR_NAME}/llm_demo/executorch.aar"
51
50
52
51
upload-release-aar :
53
52
name : upload-release-aar
@@ -65,11 +64,13 @@ jobs:
65
64
shell : bash
66
65
run : |
67
66
wget https://gha-artifacts.s3.amazonaws.com/${{ github.repository }}/${{ github.run_id }}/artifacts/llm_demo/executorch.aar
67
+ shasum -a 256 executorch.aar > executorch.aar.sha256sums
68
68
69
69
pip install awscli==1.32.18
70
70
AWS_CMD="aws s3 cp"
71
71
VERSION_NAME="$(date +'%Y%m%d')"
72
72
${AWS_CMD} executorch.aar s3://ossci-android/executorch/release/${VERSION_NAME}/executorch.aar --acl public-read
73
+ ${AWS_CMD} executorch.aar.sha256sums s3://ossci-android/executorch/release/${VERSION_NAME}/executorch.aar.sha256sums --acl public-read
73
74
74
75
# Running Android emulator directly on the runner and not using Docker
75
76
run-emulator :
You can’t perform that action at this time.
0 commit comments