This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new c3216f117 fix(dev/release): add `CONDA_BUILD=1` when verifying with 
USE_CONDA=1 (#4180)
c3216f117 is described below

commit c3216f117ce1fa9b44ae7a4f00d173a8347f0853
Author: Matt Topol <[email protected]>
AuthorDate: Sat Apr 4 04:09:50 2026 -0400

    fix(dev/release): add `CONDA_BUILD=1` when verifying with USE_CONDA=1 
(#4180)
    
    Ran into an issue when verifying with some driver-manager tests failing,
    turned out to be the mismatch between using a conda environment but
    CONDA_BUILD wasn't set. So the test for a specific error message didn't
    get the message it was expecting. Adding the right `export
    CONDA_BUILD=1` was sufficient to fix the verification.
---
 dev/release/verify-release-candidate.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 516b71fc1..ff7d9e2c8 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -530,6 +530,7 @@ test_cpp() {
     export 
CMAKE_PREFIX_PATH="${CONDA_BACKUP_CMAKE_PREFIX_PATH}:${CMAKE_PREFIX_PATH}"
     # The CMake setup forces RPATH to be the Conda prefix
     export CPP_INSTALL_PREFIX="${CONDA_PREFIX}"
+    export CONDA_BUILD=1
   else
     export CPP_INSTALL_PREFIX="${ARROW_TMPDIR}/local"
   fi

Reply via email to