Skip to content

fix(ci): Prevent flaky ASAN failures with Dremio #2604

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/native-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y libpq-dev ninja-build
sudo apt install -y libpq-dev ninja-build clang-19
- name: Get required Go version
run: |
(. .env && echo "GO_VERSION=${GO}") >> $GITHUB_ENV
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
python -m dotenv -f .env list --format simple | tee -a $GITHUB_ENV
- name: Build
run: |
meson setup \
env CXX=/usr/bin/clang++-19 meson setup \
-Db_sanitize=address,undefined \
-Ddriver_manager=true \
-Dflightsql=true \
Expand Down
Loading