mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
7fc1685b7a
Set the go_import_path explicitly. See https://docs.travis-ci.com/user/languages/go#Go-Import-Path
27 lines
280 B
YAML
27 lines
280 B
YAML
go_import_path: github.com/minio/minio
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
language: go
|
|
|
|
os:
|
|
- linux
|
|
#- osx
|
|
|
|
#osx_image: xcode7.2
|
|
|
|
env:
|
|
- ARCH=x86_64
|
|
- ARCH=i686
|
|
|
|
script:
|
|
- make test GOFLAGS="-race"
|
|
- make coverage
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
go:
|
|
- 1.7.1
|