Skip to content

Commit d89b746

Browse files
authored
remove vendor directory, update makefile (#2003)
* remove vendor directory, update makefile * update golangci.yml * more changes to makefile * update makefile
1 parent 1237f3e commit d89b746

File tree

3,599 files changed

+2
-1751824
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,599 files changed

+2
-1751824
lines changed

.golangci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
run:
22
deadline: 2m30s
3-
modules-download-mode: vendor
43

54
issues:
65
max-per-linter: 0

GNUmakefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1-
TEST?=$$(go list ./... |grep -v 'vendor')
1+
TEST?=$$(go list ./...)
22
WEBSITE_REPO=github.com/hashicorp/terraform-website
33
PKG_NAME=google
44
DIR_NAME=google-beta
55

66
GO111MODULE=on
7-
GOFLAGS=-mod=vendor
87

98
default: build
109

1110
build: fmtcheck generate
1211
go install
1312

1413
test: fmtcheck generate
15-
go test -i $(TEST) || exit 1
16-
echo $(TEST) | \
17-
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
14+
go test $(TESTARGS) -timeout=30s -parallel=4 $(TEST)
1815

1916
testacc: fmtcheck
2017
TF_ACC=1 TF_SCHEMA_PANIC_ON_ERROR=1 go test $(TEST) -v $(TESTARGS) -timeout 240m -ldflags="-X=github.com/terraform-providers/terraform-provider-google-beta/version.ProviderVersion=acc"

0 commit comments

Comments
 (0)