Skip to content

Commit

Permalink
Disable malloc pre-allocation on macOS
Browse files Browse the repository at this point in the history
It seems to clog logs and slow down TSan.
  • Loading branch information
OlivierNicole committed Sep 18, 2023
1 parent 6cb1999 commit 737927a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,14 @@ jobs:
- name: Build
run: |
V=1 MAKE_ARG=-j bash -xe tools/ci/actions/runner.sh build
env:
MallocNanoZone: 0
- name: Run the testsuite
if: ${{ matrix.name != 'linux-O0' }}
run: |
bash -c 'SHOW_TIMINGS=1 tools/ci/actions/runner.sh test'
env:
MallocNanoZone: 0
- name: Run the testsuite (linux-O0)
if: ${{ matrix.name == 'linux-O0' }}
env:
Expand Down

0 comments on commit 737927a

Please sign in to comment.