mirror of
https://github.com/minio/minio.git
synced 2024-12-26 07:05:55 -05:00
58633a383a
It was decided that we will be deprecating ARM support for minio builds. ARM users should simply compile from source. Additionally 32bit version of Linux, Windows and FreeBSD (64bit) are deprecated.
31 lines
396 B
YAML
31 lines
396 B
YAML
go_import_path: github.com/minio/minio
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
dist: trusty
|
|
|
|
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- ARCH=x86_64
|
|
- ARCH=i686
|
|
|
|
script:
|
|
## Run all the tests
|
|
- make
|
|
- diff -au <(gofmt -d cmd) <(printf "")
|
|
- diff -au <(gofmt -d pkg) <(printf "")
|
|
- make test GOFLAGS="-timeout 15m -race -v"
|
|
- make coverage
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
go:
|
|
- 1.8.3
|