This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 2b203ff616 GH-47534: [C++] Detect conda-installed packages in Meson CI
(#47535)
2b203ff616 is described below
commit 2b203ff616b7a16fb1eb160c93dc447096eda255
Author: William Ayd <[email protected]>
AuthorDate: Mon Sep 8 19:50:58 2025 -0400
GH-47534: [C++] Detect conda-installed packages in Meson CI (#47535)
### Rationale for this change
This detects conda-installed packages in Meson CI, so that dependencies
which are installed via conda do not need to be built from scratch
### What changes are included in this PR?
An update to the meson setup invocation
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* GitHub Issue: #47534
Authored-by: Will Ayd <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
ci/scripts/cpp_build.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/ci/scripts/cpp_build.sh b/ci/scripts/cpp_build.sh
index 8df5ec2b2d..3a4431239f 100755
--- a/ci/scripts/cpp_build.sh
+++ b/ci/scripts/cpp_build.sh
@@ -142,6 +142,7 @@ if [ "${ARROW_USE_MESON:-OFF}" = "ON" ]; then
meson setup \
--prefix=${MESON_PREFIX:-${ARROW_HOME}} \
--buildtype=${ARROW_BUILD_TYPE:-debug} \
+ --pkg-config-path="${CONDA_PREFIX}/lib/pkgconfig/" \
-Dauto_features=enabled \
-Dfuzzing=disabled \
-Dgcs=disabled \