Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 0 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
- name: Test
env:
CC: ${{ matrix.compiler }}
LIBDQLITE_TRACE: 1
ASAN_OPTIONS: fast_unwind_on_malloc=0
run: |
./test/raft/lib/fs.sh setup
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/latest-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Build dqlite
run: |
autoreconf -i
./configure --enable-debug --enable-sanitize --enable-build-raft --enable-build-sqlite
./configure CFLAGS="-march=x86-64-v3" --enable-debug --enable-sanitize --enable-build-raft --enable-build-sqlite
Comment thread
marco6 marked this conversation as resolved.
make -j4 unit-test integration-test \
raft-core-fuzzy-test \
raft-core-integration-test \
Expand All @@ -69,5 +69,4 @@ jobs:

- name: Test
run: |
export LIBDQLITE_TRACE=1
make check || (cat ./test-suite.log && false)
Loading