minio/.travis.yml
Harshavardhana 99a12613a3 update: For source builds look for absolute path. (#3780)
os.Args[0] doesn't point to absolute path we need
use exec.LookPath to find the absolute path before
sending os.Stat().
2017-02-21 01:32:05 -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 15m -race -v"
- make coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
go:
- 1.7.4