minio/.travis.yml

35 lines
491 B
YAML
Raw Normal View History

go_import_path: github.com/minio/minio
2016-02-11 01:40:09 +01:00
sudo: required
services:
- docker
2016-02-11 01:40:09 +01:00
dist: trusty
2015-04-12 02:23:13 +02:00
language: go
os:
- linux
env:
- ARCH=x86_64
2018-03-23 10:06:20 +01:00
before_install:
- nvm install stable
script:
## Run all the tests
2016-12-03 02:42:37 +01:00
- make
- diff -au <(gofmt -s -d cmd) <(printf "")
- diff -au <(gofmt -s -d pkg) <(printf "")
- make test GOFLAGS="-timeout 15m -race -v"
2016-08-05 01:48:50 +02:00
- make coverage
2018-03-23 10:06:20 +01:00
- node --version
2018-03-26 21:49:12 +02:00
- cd browser && yarn && yarn test && cd ..
2016-08-05 01:48:50 +02:00
after_success:
- bash <(curl -s https://codecov.io/bash)
2015-04-12 02:23:13 +02:00
go:
2018-04-06 20:07:39 +02:00
- '1.10.1'