Separate build functional tests from Makefile (#6351)

Recently travis seems to have issues with builds after
merge, so this PR is an experiment to fix this.

Failed: https://travis-ci.org/minio/minio/builds/419769285#L2310

Succeeded: https://travis-ci.org/minio/minio/builds/419565606#L2322

This PR was tested to be working properly on my fork to build
on travis, would need to do the same in minio/minio and see
how it goes through.
This commit is contained in:
Harshavardhana
2018-08-28 01:27:01 -07:00
committed by Nitish Tiwari
parent d524924b80
commit a13cd7b7c4
2 changed files with 4 additions and 2 deletions

View File

@@ -61,6 +61,8 @@ check: test
test: verifiers build
@echo "Running unit tests"
@go test $(GOFLAGS) -tags kqueue ./...
verify: build
@echo "Verifying build"
@(env bash $(PWD)/buildscripts/verify-build.sh)