mirror of
https://github.com/minio/minio.git
synced 2024-12-26 07:05:55 -05: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
|