Skip to content

Commit

Permalink
ghaction: fix SIGABRT on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
santhosh-tekuri committed Nov 10, 2022
1 parent 0be80a6 commit 926571e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
go-version: ${{ matrix.go }}
- name: checkout
uses: actions/[email protected]
# https:/golang/go/issues/49138
- name: disable MallocNanoZone for macos-latest
run: echo "MallocNanoZone=0" >> $GITHUB_ENV
if: runner.os == 'macOS'
- name: test
run: go test -race -coverprofile coverage.txt -covermode atomic
- name: upload coverage
Expand Down

0 comments on commit 926571e

Please sign in to comment.