2016-10-17 16:42:20 +01:00
|
|
|
go_import_path: github.com/minio/minio
|
2016-09-28 18:49:16 -07:00
|
|
|
|
2015-04-11 17:23:13 -07:00
|
|
|
language: go
|
2016-01-14 18:17:24 -08:00
|
|
|
|
2019-07-09 18:32:39 -07:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- shellcheck
|
|
|
|
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
2018-08-19 13:57:18 -07:00
|
|
|
# this ensures PRs based on a local branch are not built twice
|
|
|
|
# the downside is that a PR targeting a different branch is not built
|
|
|
|
# but as a workaround you can add the branch to this list
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2018-07-03 13:42:19 -03:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2018-10-17 20:18:53 -07:00
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
2018-07-03 13:42:19 -03:00
|
|
|
env:
|
|
|
|
- ARCH=x86_64
|
2019-01-09 06:23:04 +05:30
|
|
|
- CGO_ENABLED=0
|
2019-03-19 13:50:59 -07:00
|
|
|
- GO111MODULE=on
|
2019-09-08 16:44:15 -07:00
|
|
|
go: 1.13.x
|
2018-07-03 13:42:19 -03:00
|
|
|
script:
|
|
|
|
- make
|
|
|
|
- diff -au <(gofmt -s -d cmd) <(printf "")
|
|
|
|
- diff -au <(gofmt -s -d pkg) <(printf "")
|
2019-01-09 06:23:04 +05:30
|
|
|
- for d in $(go list ./... | grep -v browser); do CGO_ENABLED=1 go test -v -race --timeout 15m "$d"; done
|
2019-01-22 09:27:23 +05:30
|
|
|
- make verifiers
|
|
|
|
- make crosscompile
|
2018-08-28 01:27:01 -07:00
|
|
|
- make verify
|
2018-07-03 13:42:19 -03:00
|
|
|
- make coverage
|
|
|
|
- cd browser && yarn && yarn test && cd ..
|
2019-07-09 18:32:39 -07:00
|
|
|
- bash -c 'shopt -s globstar; shellcheck mint/**/*.sh'
|
|
|
|
|
2018-10-17 20:18:53 -07:00
|
|
|
- os: windows
|
|
|
|
env:
|
|
|
|
- ARCH=x86_64
|
2019-01-09 06:23:04 +05:30
|
|
|
- CGO_ENABLED=0
|
2019-04-02 18:28:39 -07:00
|
|
|
- GO111MODULE=on
|
2019-09-08 16:44:15 -07:00
|
|
|
go: 1.13.x
|
2018-10-17 20:18:53 -07:00
|
|
|
script:
|
|
|
|
- go build --ldflags="$(go run buildscripts/gen-ldflags.go)" -o %GOPATH%\bin\minio.exe
|
|
|
|
- bash buildscripts/go-coverage.sh
|
2016-01-14 18:17:24 -08:00
|
|
|
|
2018-12-13 23:37:46 -08:00
|
|
|
before_script:
|
|
|
|
# Add an IPv6 config - see the corresponding Travis issue
|
|
|
|
# https://github.com/travis-ci/travis-ci/issues/8361
|
|
|
|
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'; fi
|
|
|
|
|
2018-03-23 14:36:20 +05:30
|
|
|
before_install:
|
2019-03-06 16:05:49 -08:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then nvm install 11.10.1 ; fi
|