Skip to content

Commit

Permalink
[chore](build) Skip cloud module for arm64 (aarch64) in build-for-rel…
Browse files Browse the repository at this point in the history
…ease.sh (#39804)
  • Loading branch information
gavinchou authored Aug 28, 2024
1 parent 643eb97 commit 781a994
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build-for-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 781a994

Please sign in to comment.