minio/.travis.yml

25 lines
274 B
YAML
Raw Normal View History

go_import_path: github.com/minio/minio
2016-02-11 00:40:09 +00:00
sudo: required
2016-02-11 00:40:09 +00:00
dist: trusty
2015-04-12 00:23:13 +00:00
language: go
os:
- linux
env:
- ARCH=x86_64
- ARCH=i686
script:
2016-12-03 01:42:37 +00:00
- make
- make test GOFLAGS="-timeout 20m -race -v"
2016-08-04 23:48:50 +00:00
- make coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
2015-04-12 00:23:13 +00:00
go:
- 1.7.4