This is an automated email from the ASF dual-hosted git repository. gavinchou pushed a commit to branch branch-3.0.1-tmp-arm in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0.1-tmp-arm by this push: new eeaea88ac33 [chore](build) Skip cloud module for arm64 (aarch64) in build-for-release.sh eeaea88ac33 is described below commit eeaea88ac337cd5910135c2231f50b7290e75018 Author: Gavin Chou <gavineaglec...@gmail.com> AuthorDate: Thu Aug 22 15:11:52 2024 +0800 [chore](build) Skip cloud module for arm64 (aarch64) in build-for-release.sh --- build-for-release.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-for-release.sh b/build-for-release.sh index 4d9a257bd2e..2347f9ebaab 100755 --- a/build-for-release.sh +++ b/build-for-release.sh @@ -164,7 +164,11 @@ cp -R "${ORI_OUTPUT}"/apache_hdfs_broker "${OUTPUT_EXT}"/apache_hdfs_broker cp -R "${ORI_OUTPUT}"/be/* "${OUTPUT_BE}"/ # CLOUD -cp -R "${ORI_OUTPUT}"/ms/* "${OUTPUT_CLOUD}"/ +if [[ "${ARCH}" == "arm64" ]]; then + echo "WARNING: Cloud module is not supported on ARM platform, will skip building it." +else + cp -R "${ORI_OUTPUT}"/ms/* "${OUTPUT_CLOUD}"/ +fi if [[ "${TAR}" -eq 1 ]]; then echo "Begin to compress" --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org