mirror of
https://github.com/minio/minio.git
synced 2026-06-04 10:13:48 +08:00
f7a87b30bf
This reverts commit 736d8cbac4.
Bring contrib files for older contributions
8 lines
150 B
Bash
Executable File
8 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
for d in $(go list ./... | grep -v browser); do
|
|
CGO_ENABLED=1 go test -v -tags kqueue -race --timeout 100m "$d"
|
|
done
|