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
2
2
3
3
# include release tools for building binary and testing targets
4
4
include release-tools/build.make
@@ -8,7 +8,7 @@ GOPATH ?= $(shell go env GOPATH)
8
8
REPO_ROOT = $(CURDIR )
9
9
BUILD_DIR = bin
10
10
BUILD_TOOLS_DIR = $(BUILD_DIR ) /tools
11
- GO_ENV_VARS = GO111MODULE=on GOOS=windows
11
+ GO_ENV_VARS = GO111MODULE=on GOOS=windows GOARCH=amd64
12
12
13
13
# see https://github.com/golangci/golangci-lint/releases
14
14
GOLANGCI_LINT_VERSION = v1.21.0
@@ -19,6 +19,10 @@ lint: $(GOLANGCI_LINT)
19
19
$(GO_ENV_VARS ) $(GOLANGCI_LINT ) run
20
20
git --no-pager diff --exit-code
21
21
22
+ .PHONY : build
23
+ build :
24
+ ${GO_ENV_VARS} go test -c ./integrationtests -o ./bin/integrationtests.test.exe
25
+
22
26
.PHONY : test-go
23
27
test : test-go
24
28
test-go :
You can’t perform that action at this time.
0 commit comments