We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fceeda commit 90c871eCopy full SHA for 90c871e
1 file changed
GNUmakefile
@@ -24,19 +24,19 @@ lint:
24
golangci-lint run ./...
25
26
test:
27
- go test ./...
+ CGO_ENABLED=0 go test ./...
28
# commenting this out for release tooling, please run testacc instead
29
30
testacc: fmtcheck
31
- TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
+ TF_ACC=1 CGO_ENABLED=0 go test $(TEST) -v $(TESTARGS) -timeout 120m
32
33
test-compile:
34
@if [ "$(TEST)" = "./..." ]; then \
35
echo "ERROR: Set TEST to a specific package. For example,"; \
36
echo " make test-compile TEST=./$(PKG_NAME)"; \
37
exit 1; \
38
fi
39
- go test -c $(TEST) $(TESTARGS)
+ CGO_ENABLED=0 go test -c $(TEST) $(TESTARGS)
40
41
vet:
42
@echo "go vet ."
0 commit comments