make bin currently won't work outside of GOPATH
This commit is contained in:
parent
5971368f4e
commit
0a2f4d884a
6
Makefile
6
Makefile
|
@ -28,14 +28,14 @@ release: install-build-deps test releasebin package ## Build a release build
|
||||||
|
|
||||||
bin: install-build-deps ## Build debug/test build
|
bin: install-build-deps ## Build debug/test build
|
||||||
@echo "WARN: 'make bin' is for debug / test builds only. Use 'make release' for release builds."
|
@echo "WARN: 'make bin' is for debug / test builds only. Use 'make release' for release builds."
|
||||||
@GO111MODULE=off sh -c "$(CURDIR)/scripts/build.sh"
|
@GO111MODULE=auto sh -c "$(CURDIR)/scripts/build.sh"
|
||||||
|
|
||||||
releasebin: install-build-deps
|
releasebin: install-build-deps
|
||||||
@grep 'const VersionPrerelease = "dev"' version/version.go > /dev/null ; if [ $$? -eq 0 ]; then \
|
@grep 'const VersionPrerelease = "dev"' version/version.go > /dev/null ; if [ $$? -eq 0 ]; then \
|
||||||
echo "ERROR: You must remove prerelease tags from version/version.go prior to release."; \
|
echo "ERROR: You must remove prerelease tags from version/version.go prior to release."; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
@GO111MODULE=off sh -c "$(CURDIR)/scripts/build.sh"
|
@GO111MODULE=auto sh -c "$(CURDIR)/scripts/build.sh"
|
||||||
|
|
||||||
package:
|
package:
|
||||||
$(if $(VERSION),,@echo 'VERSION= needed to release; Use make package skip compilation'; exit 1)
|
$(if $(VERSION),,@echo 'VERSION= needed to release; Use make package skip compilation'; exit 1)
|
||||||
|
@ -115,7 +115,7 @@ testrace: mode-check vet ## Test with race detection enabled
|
||||||
@GO111MODULE=off go test -race $(TEST) $(TESTARGS) -timeout=3m -p=8
|
@GO111MODULE=off go test -race $(TEST) $(TESTARGS) -timeout=3m -p=8
|
||||||
|
|
||||||
check-vendor-vs-mod: ## Check that go modules and vendored code are on par
|
check-vendor-vs-mod: ## Check that go modules and vendored code are on par
|
||||||
@GO111MODULE=on go mod vendor
|
@GO111MODULE=on go mod vendor
|
||||||
@git diff --exit-code --ignore-space-change --ignore-space-at-eol -- vendor ; if [ $$? -eq 1 ]; then \
|
@git diff --exit-code --ignore-space-change --ignore-space-at-eol -- vendor ; if [ $$? -eq 1 ]; then \
|
||||||
echo "ERROR: vendor dir is not on par with go modules definition." && \
|
echo "ERROR: vendor dir is not on par with go modules definition." && \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
|
Loading…
Reference in New Issue