-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathGNUmakefile
82 lines (67 loc) · 3.19 KB
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
TEST?=./...
VERSION=$(shell ./scripts/git-version.sh)
PKG_NAME=hcloud
WEBSITE_REPO=github.com/hashicorp/terraform-website
export CGO_ENABLED:=0
default: build
build:
go install
clean:
@rm -rf bin
clean-release:
@rm -rf _output
release: \
clean \
clean-release \
_output/terraform-provider-hcloud_linux_amd64.zip \
_output/terraform-provider-hcloud_darwin_amd64.zip \
_output/terraform-provider-hcloud_freebsd_amd64.zip \
_output/terraform-provider-hcloud_freebsd_386.zip \
_output/terraform-provider-hcloud_freebsd_arm.zip \
_output/terraform-provider-hcloud_linux_amd64.zip \
_output/terraform-provider-hcloud_linux_386.zip \
_output/terraform-provider-hcloud_linux_arm.zip \
_output/terraform-provider-hcloud_openbsd_amd64.zip \
_output/terraform-provider-hcloud_openbsd_386.zip \
_output/terraform-provider-hcloud_solaris_amd64.zip \
_output/terraform-provider-hcloud_windows_amd64.zip \
_output/terraform-provider-hcloud_windows_386.zip
bin/darwin_amd64/terraform-provider-hcloud: GOARGS = GOOS=darwin GOARCH=amd64
bin/freebsd_amd64/terraform-provider-hcloud: GOARGS = GOOS=freebsd GOARCH=amd64
bin/freebsd_386/terraform-provider-hcloud: GOARGS = GOOS=freebsd GOARCH=386
bin/freebsd_arm/terraform-provider-hcloud: GOARGS = GOOS=freebsd GOARCH=arm
bin/linux_amd64/terraform-provider-hcloud: GOARGS = GOOS=linux GOARCH=amd64
bin/linux_386/terraform-provider-hcloud: GOARGS = GOOS=linux GOARCH=386
bin/linux_arm/terraform-provider-hcloud: GOARGS = GOOS=linux GOARCH=arm
bin/openbsd_amd64/terraform-provider-hcloud: GOARGS = GOOS=openbsd GOARCH=amd64
bin/openbsd_386/terraform-provider-hcloud: GOARGS = GOOS=openbsd GOARCH=386
bin/solaris_amd64/terraform-provider-hcloud: GOARGS = GOOS=solaris GOARCH=amd64
bin/windows_amd64/terraform-provider-hcloud: GOARGS = GOOS=windows GOARCH=amd64
bin/windows_386/terraform-provider-hcloud: GOARGS = GOOS=windows GOARCH=386
bin/%/terraform-provider-hcloud: clean
$(GOARGS) go build -o $@ -a .
_output/terraform-provider-hcloud_%.zip: NAME=terraform-provider-hcloud_$(VERSION)_$*
_output/terraform-provider-hcloud_%.zip: DEST=_output/$(NAME)
_output/terraform-provider-hcloud_%.zip: bin/%/terraform-provider-hcloud
mkdir -p $(DEST)
cp bin/$*/terraform-provider-hcloud README.md CHANGELOG.md LICENSE $(DEST)
cd $(DEST) && zip -r ../$(NAME).zip .
lint:
golangci-lint run --fix
test:
go test $(TEST) $(TESTARGS) -v -timeout=30s -parallel=8
testacc:
TF_ACC=1 go test $(TEST) $(TESTARGS) -v -timeout=30m -parallel=8
website:
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
website-test:
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
.PHONY: build test testacc release clean clean-release website website-test