Migrate to Go version 1.11.4 (#7026)

This commit is contained in:
Harshavardhana 2018-12-28 14:04:39 -08:00 committed by GitHub
parent 2a0e4b6f58
commit b5280ba243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 18 deletions

View File

@ -16,19 +16,19 @@ matrix:
sudo: required sudo: required
env: env:
- ARCH=x86_64 - ARCH=x86_64
go: 1.10.4 go: 1.11.4
script: script:
- make - make
- diff -au <(gofmt -s -d cmd) <(printf "") - diff -au <(gofmt -s -d cmd) <(printf "")
- diff -au <(gofmt -s -d pkg) <(printf "") - diff -au <(gofmt -s -d pkg) <(printf "")
- make test GOFLAGS="-timeout 15m -race -v" - for d in $(go list ./... | grep -v browser); do go test -v -race --timeout 15m "$d"; done
- make verify - make verify
- make coverage - make coverage
- cd browser && yarn && yarn test && cd .. - cd browser && yarn && yarn test && cd ..
- os: windows - os: windows
env: env:
- ARCH=x86_64 - ARCH=x86_64
go: 1.10.4 go: 1.11.4
script: script:
- go build --ldflags="$(go run buildscripts/gen-ldflags.go)" -o %GOPATH%\bin\minio.exe - go build --ldflags="$(go run buildscripts/gen-ldflags.go)" -o %GOPATH%\bin\minio.exe
- for d in $(go list ./... | grep -v browser); do go test -v -race --timeout 20m "$d"; done - for d in $(go list ./... | grep -v browser); do go test -v -race --timeout 20m "$d"; done

View File

@ -60,7 +60,7 @@ spelling:
check: test check: test
test: verifiers build test: verifiers build
@echo "Running unit tests" @echo "Running unit tests"
@go test $(GOFLAGS) -tags kqueue ./... @go test -tags kqueue ./...
verify: build verify: build
@echo "Verifying build" @echo "Verifying build"
@ -73,7 +73,7 @@ coverage: build
# Builds minio locally. # Builds minio locally.
build: checks build: checks
@echo "Building minio binary to './minio'" @echo "Building minio binary to './minio'"
@CGO_ENABLED=0 go build -tags kqueue --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio @GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio
docker: build docker: build
@docker build -t $(TAG) . -f Dockerfile.dev @docker build -t $(TAG) . -f Dockerfile.dev