This is an automated email from the ASF dual-hosted git repository.
zclll 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 d961ea692a3 [Fix](deps) let thirdparty build libazure by default in
x86 (#55111)
d961ea692a3 is described below
commit d961ea692a3836f91716b042672b48fbbb676eb0
Author: zclllyybb <[email protected]>
AuthorDate: Thu Aug 21 21:16:32 2025 +0800
[Fix](deps) let thirdparty build libazure by default in x86 (#55111)
Problem Summary:
bug introduced in https://github.com/apache/doris/pull/54521 make we
didn't compile libazure for thirdparty.
btw, `env.sh` may affect thirdparty's build. so if it changed, trigger
on building thirdparty pipeline.
---
.github/workflows/build-thirdparty.yml | 1 +
build.sh | 2 +-
thirdparty/build-thirdparty.sh | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build-thirdparty.yml
b/.github/workflows/build-thirdparty.yml
index 881a91a84b1..6f2504e855b 100644
--- a/.github/workflows/build-thirdparty.yml
+++ b/.github/workflows/build-thirdparty.yml
@@ -53,6 +53,7 @@ jobs:
filters: |
thirdparty_changes:
- 'thirdparty/**'
+ - 'env.sh'
build_linux:
name: Build Third Party Libraries (Linux)
diff --git a/build.sh b/build.sh
index 3889abead74..834535980c5 100755
--- a/build.sh
+++ b/build.sh
@@ -441,7 +441,7 @@ if [[ -z "${DISABLE_JAVA_CHECK_STYLE}" ]]; then
DISABLE_JAVA_CHECK_STYLE='OFF'
fi
-if [[ "${DISABLE_BUILD_AZURE^^}" == "ON" ]]; then
+if [[ "$(echo "${DISABLE_BUILD_AZURE}" | tr '[:lower:]' '[:upper:]')" == "ON"
]]; then
BUILD_AZURE='OFF'
fi
diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh
index 4a6eb50df8f..24bf81ee48d 100755
--- a/thirdparty/build-thirdparty.sh
+++ b/thirdparty/build-thirdparty.sh
@@ -121,7 +121,7 @@ if [[ "${HELP}" -eq 1 ]]; then
usage
fi
-if [[ -n "${DISABLE_BUILD_AZURE}" ]]; then
+if [[ "$(echo "${DISABLE_BUILD_AZURE}" | tr '[:lower:]' '[:upper:]')" == "ON"
]]; then
BUILD_AZURE='OFF'
fi
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]