This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new a3fee40ce5 [bugfix](build script) fix noavx2 package name branch condition #21356 a3fee40ce5 is described below commit a3fee40ce5915a644bf7b4ff0f04c7a018e9a29f Author: Kang <kxiao.ti...@gmail.com> AuthorDate: Fri Jun 30 09:03:05 2023 +0800 [bugfix](build script) fix noavx2 package name branch condition #21356 ARCH changed from x86_64 to x64, but the check condition for noavx2 remains x86_64. Just remove check for ARCH. --- build-for-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-for-release.sh b/build-for-release.sh index 83b430215c..0d9e6efb4d 100755 --- a/build-for-release.sh +++ b/build-for-release.sh @@ -128,7 +128,7 @@ BE="be" EXT="extensions" PACKAGE="apache-doris-${VERSION}-bin-${ARCH}" -if [[ "${_USE_AVX2}" == "0" && "${ARCH}" == "x86_64" ]]; then +if [[ "${_USE_AVX2}" == "0" ]]; then PACKAGE="${PACKAGE}-noavx2" fi --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org