mirror of
https://github.com/minio/minio
synced 2024-11-05 17:34:01 +00:00
31dff87903
Also changes the behavior of `secretKeyHash` which is not necessary to be sent over the network, each node has its own secretKeyHash to validate. Fixes #3696 Partial(fix) #3700 (More changes needed with some code cleanup)
24 lines
274 B
YAML
24 lines
274 B
YAML
go_import_path: github.com/minio/minio
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- ARCH=x86_64
|
|
- ARCH=i686
|
|
|
|
script:
|
|
- make
|
|
- make test GOFLAGS="-timeout 20m -race -v"
|
|
- make coverage
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
go:
|
|
- 1.7.4
|