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

willayd 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 0c9edfe9a fix(ci): Skip flaky ASAN failures in Meson (#2604)
0c9edfe9a is described below

commit 0c9edfe9aed9518e6127e14b8739055dfd1754fb
Author: William Ayd <[email protected]>
AuthorDate: Sun Apr 27 10:24:10 2025 -0400

    fix(ci): Skip flaky ASAN failures in Meson (#2604)
---
 .github/workflows/native-unix.yml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/native-unix.yml 
b/.github/workflows/native-unix.yml
index 0e3c6493a..1b2cc834f 100644
--- a/.github/workflows/native-unix.yml
+++ b/.github/workflows/native-unix.yml
@@ -250,13 +250,25 @@ jobs:
       - name: Build
         run: |
           meson setup \
-            -Db_sanitize=address,undefined \
             -Dauto_features=enabled \
             c c/build
           meson compile -C c/build
       - name: Test
         run: |
           meson test -C c/build --print-errorlogs
+      - name: Build with sanitizers
+        run: |
+          # skip bigquery and flightsql for now; see GH-2744
+          meson setup \
+            -Db_sanitize=address,undefined \
+            -Dauto_features=enabled \
+            -Dbigquery=disabled \
+            -Dflightsql=disabled \
+            c c/build
+          meson compile -C c/build
+      - name: Test with sanitizers
+        run: |
+          meson test -C c/build --print-errorlogs
       - name: Stop SQLite server, Dremio, and postgresql
         run: |
           docker compose down

Reply via email to