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 9ee4710a6 chore(ci): disable ASan on macos-latest C/C++ job to avoid
CI hang (#4495)
9ee4710a6 is described below
commit 9ee4710a61924db4dc1fd8ca16065590ca47d138
Author: Fredrik Fornwall <[email protected]>
AuthorDate: Mon Jul 13 02:44:00 2026 +0200
chore(ci): disable ASan on macos-latest C/C++ job to avoid CI hang (#4495)
It seems that
[AddressSanitizer](https://clang.llvm.org/docs/AddressSanitizer.html)
(ASan) here hangs CI at:
- `Native Libraries (Unix) / C/C++ (Conda/macos-latest)`
Example run on latest main branch commit at time of writing:
-
https://github.com/apache/arrow-adbc/actions/runs/28991039011/job/86030648737
Disable ASan on macos-latest for now to work around that. It still runs
on Linux and intel macOS.
Signed-off-by: Fredrik Fornwall <[email protected]>
---
.github/workflows/native-unix.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/native-unix.yml
b/.github/workflows/native-unix.yml
index 872b10eb1..59236003f 100644
--- a/.github/workflows/native-unix.yml
+++ b/.github/workflows/native-unix.yml
@@ -197,6 +197,8 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
BUILD_DRIVER_SQLITE: "1"
ADBC_DRIVER_MANAGER_USER_CONFIG_TEST: "1"
+ # Disable ASan for now on macos-latest (apple silicon) to avoid CI
hanging
+ ADBC_USE_ASAN: ${{ matrix.os == 'macos-latest' && 'OFF' || 'ON' }}
run: |
# Ensure the CONDA_PREFIX searching in driver manager is tested
export CONDA_BUILD=1