File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1- all : test
1+ all : build test
22
33# include release tools for building binary and testing targets
44include release-tools/build.make
@@ -8,7 +8,7 @@ GOPATH ?= $(shell go env GOPATH)
88REPO_ROOT = $(CURDIR )
99BUILD_DIR = bin
1010BUILD_TOOLS_DIR = $(BUILD_DIR ) /tools
11- GO_ENV_VARS = GO111MODULE=on GOOS=windows
11+ GO_ENV_VARS = GO111MODULE=on GOOS=windows GOARCH=amd64
1212
1313# see https://github.com/golangci/golangci-lint/releases
1414GOLANGCI_LINT_VERSION = v1.21.0
@@ -19,6 +19,10 @@ lint: $(GOLANGCI_LINT)
1919 $(GO_ENV_VARS ) $(GOLANGCI_LINT ) run
2020 git --no-pager diff --exit-code
2121
22+ .PHONY : build
23+ build :
24+ ${GO_ENV_VARS} go test -c ./integrationtests -o ./bin/integrationtests.test.exe
25+
2226.PHONY : test-go
2327test : test-go
2428test-go :
You can’t perform that action at this time.
0 commit comments