mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
enable race detector CI for macos-latest (#11715)
This commit is contained in:
parent
bcf9825082
commit
ec547c0fa8
3
.github/workflows/go.yml
vendored
3
.github/workflows/go.yml
vendored
@ -27,7 +27,8 @@ jobs:
|
|||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
GO111MODULE: on
|
GO111MODULE: on
|
||||||
run: |
|
run: |
|
||||||
make test
|
make
|
||||||
|
make test-race
|
||||||
- name: Build on ${{ matrix.os }}
|
- name: Build on ${{ matrix.os }}
|
||||||
if: matrix.os == 'windows-latest'
|
if: matrix.os == 'windows-latest'
|
||||||
env:
|
env:
|
||||||
|
@ -3,5 +3,5 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
for d in $(go list ./... | grep -v browser); do
|
for d in $(go list ./... | grep -v browser); do
|
||||||
CGO_ENABLED=1 go test -v -race --timeout 100m "$d"
|
CGO_ENABLED=1 go test -v -tags kqueue -race --timeout 100m "$d"
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user