Skip to content

Commit

Permalink
Merge pull request #2441 from kuzudb/asan-data-race
Browse files Browse the repository at this point in the history
Fix ASAN job data race
  • Loading branch information
benjaminwinger committed Nov 17, 2023
2 parents 7ef3d5c + 6399317 commit 46c23f3
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,18 +127,7 @@ jobs:
- name: Test with ASAN
run: make test ASAN=1
env:
ASAN_OPTIONS: "detect_leaks=1:log_path=/tmp/asan.log"

- name: Report ASan log
run: |
if ls /tmp/asan.log* 1>/dev/null 2>&1;
then cat /tmp/asan.log*;
rm -rf /tmp/asan.log*
exit 1;
else
exit 0;
fi
shell: bash
ASAN_OPTIONS: "detect_leaks=1"

clang-build-test:
name: clang build, test & tidy
Expand Down

0 comments on commit 46c23f3

Please sign in to comment.