minio/.travis.yml
Harshavardhana 31dff87903 Honor envs properly for access and secret key. (#3703)
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)
2017-02-07 12:51:43 -08:00

25 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