Skip to content
Merged
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
14 changes: 13 additions & 1 deletion .github/workflows/native-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading