-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathMakefile
93 lines (74 loc) · 4.43 KB
/
Makefile
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
83
84
85
86
87
88
89
90
91
92
93
ifeq (/,${HOME})
GOLANGCI_LINT_CACHE=/tmp/golangci-lint-cache/
else
GOLANGCI_LINT_CACHE=${HOME}/.cache/golangci-lint
endif
GOLANGCI_LINT ?= GOLANGCI_LINT_CACHE=$(GOLANGCI_LINT_CACHE) go run github.com/golangci/golangci-lint/cmd/golangci-lint
binaries: deploybin
sec:
@touch common/runtime/runtime-azure
@go run github.com/securego/gosec/v2/cmd/gosec@latest -exclude-dir=tools ./...
runtimebin:
@echo Building Azure Runtime Server
@CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/runtime-azure -ldflags="-s -w -extldflags=-static" ./cmd/runtime
predeploybin: runtimebin
@cp bin/runtime-azure common/runtime/runtime-azure
deploybin: predeploybin
@echo Building Azure Deployment Server
@CGO_ENABLED=0 go build -o bin/deploy-azure -ldflags="-s -w -extldflags=-static" -ldflags="-X google.golang.org/protobuf/reflect/protoregistry.conflictPolicy=ignore" ./cmd/deploy
deploybintf: generate-terraform predeploybin
@echo Building Azure Terraform Deployment Server
@CGO_ENABLED=0 go build -o bin/deploy-azuretf -ldflags="-s -w -extldflags=-static" -ldflags="-X google.golang.org/protobuf/reflect/protoregistry.conflictPolicy=ignore" ./cmd/deploytf
install: deploybin deploybintf
@echo installing azure deployment server to ${HOME}/.nitric/providers/nitric/azure-0.0.1
@echo installing azure terraform deployment server to ${HOME}/.nitric/providers/nitric/azuretf-0.0.1
@mkdir -p ${HOME}/.nitric/providers/nitric/
@if [ "$(OS)" == "Windows_NT" ]; then \
rm -f "${HOME}/.nitric/providers/nitric/azure-0.0.1.exe"; \
cp bin/deploy-azure "${HOME}/.nitric/providers/nitric/azure-0.0.1.exe"; \
cp bin/deploy-azuretf "${HOME}/.nitric/providers/nitric/azuretf-0.0.1.exe"; \
else \
rm -f "${HOME}/.nitric/providers/nitric/azure-0.0.1"; \
cp bin/deploy-azure "${HOME}/.nitric/providers/nitric/azure-0.0.1"; \
cp bin/deploy-azuretf "${HOME}/.nitric/providers/nitric/azuretf-0.0.1"; \
fi
license-check: runtimebin
@echo Checking Azure Runtime OSS Licenses
@go run github.com/uw-labs/lichen --config=./lichen.yaml ./bin/runtime-azure
sourcefiles := $(shell find . -type f -name "*.go" -o -name "*.dockerfile")
fmt:
@go run github.com/google/addlicense -ignore "./deploytf/generated/**" -c "Nitric Technologies Pty Ltd." -y "2021" $(sourcefiles)
@touch common/runtime/runtime-azure
$(GOLANGCI_LINT) run --fix
lint:
@go run github.com/google/addlicense -ignore "./deploytf/generated/**" -check -c "Nitric Technologies Pty Ltd." -y "2021" $(sourcefiles)
@touch common/runtime/runtime-azure
$(GOLANGCI_LINT) run
test: generate-mocks
@echo Running unit tests
@go run github.com/onsi/ginkgo/ginkgo ./runtime/...
test-coverage: generate-mocks
@echo Running unit tests
@go run github.com/onsi/ginkgo/ginkgo -cover -outputdir=./ -coverprofile=all.coverprofile ./runtime/...
clean-mocks:
@rm -rf mocks
generate-mocks: clean-mocks
@echo Generating Mock Clients
@mkdir -p mocks/key_vault
@mkdir -p mocks/azblob
@mkdir -p mocks/azqueue
@mkdir -p mocks/mock_event_grid
@mkdir -p mocks/provider
@go run github.com/golang/mock/mockgen github.com/nitrictech/nitric/cloud/azure/runtime/resource AzResourceResolver > mocks/provider/azure.go
@go run github.com/golang/mock/mockgen -package mock_azblob github.com/Azure/azure-storage-blob-go/azblob StorageError > mocks/azblob/error.go
@go run github.com/golang/mock/mockgen -package mock_azqueue github.com/nitrictech/nitric/cloud/azure/runtime/queue/iface AzqueueServiceUrlIface,AzqueueQueueUrlIface,AzqueueMessageUrlIface,DequeueMessagesResponseIface,AzqueueMessageIdUrlIface > mocks/azqueue/mock.go
@go run github.com/golang/mock/mockgen -package mock_azblob github.com/nitrictech/nitric/cloud/azure/runtime/storage/iface AzblobServiceUrlIface,AzblobContainerUrlIface,AzblobBlockBlobUrlIface,AzblobDownloadResponse > mocks/azblob/mock.go
@go run github.com/golang/mock/mockgen github.com/nitrictech/nitric/cloud/azure/runtime/secret KeyVaultClient > mocks/key_vault/mock.go
@go run github.com/golang/mock/mockgen github.com/Azure/azure-sdk-for-go/services/eventgrid/2018-01-01/eventgrid/eventgridapi BaseClientAPI > mocks/mock_event_grid/mock.go
@go run github.com/golang/mock/mockgen github.com/Azure/azure-sdk-for-go/services/eventgrid/mgmt/2020-06-01/eventgrid/eventgridapi TopicsClientAPI > mocks/mock_event_grid/topic.go
generate-sources: generate-mocks
generate-terraform:
@cd deploytf && npx -y [email protected] get
tidy:
@go mod tidy
.PHONY: install license-check fmt lint test test-coverage clean-mocks generate-mocks generate-sources tidy