-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
83 lines (75 loc) · 2.95 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
################################################################################
# Variables #
################################################################################
LOCAL_ARCH := $(shell uname -m)
ifeq ($(LOCAL_ARCH),x86_64)
TARGET_ARCH_LOCAL=amd64
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 5),armv8)
TARGET_ARCH_LOCAL=arm64
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
TARGET_ARCH_LOCAL=arm
else
TARGET_ARCH_LOCAL=amd64
endif
export GOARCH ?= $(TARGET_ARCH_LOCAL)
LOCAL_OS := $(shell uname)
ifeq ($(LOCAL_OS),Linux)
TARGET_OS_LOCAL = linux
else ifeq ($(LOCAL_OS),Darwin)
TARGET_OS_LOCAL = darwin
else
TARGET_OS_LOCAL ?= windows
endif
export GOOS ?= $(TARGET_OS_LOCAL)
ifeq ($(GOOS),windows)
BINARY_EXT_LOCAL:=.exe
GOLANGCI_LINT:=golangci-lint.exe
else
BINARY_EXT_LOCAL:=
GOLANGCI_LINT:=golangci-lint
endif
################################################################################
# Target: test #
################################################################################
.PHONY: test
test:
go test ./store/inmemory
################################################################################
# Target: table store integrationtest #
######################ä#########################################################
check-tablestore-integration-test-args:
ifeq ($(storageaccount),)
$(error arg strorageaccount must be set: strorageaccount="<name of account>")
endif
ifeq ($(storageaccountkey),)
$(error arg storageaccountkey must be set: storageaccountkey="<key of account>")
endif
.PHONY: tablestore-integration-test
tablestore-integration-test: check-tablestore-integration-test-args
go test ./store/azure/tablestorage -storageaccount="$(storageaccount)" -storageaccountkey="$(storageaccountkey)"
################################################################################
# Target: cosmosdb-integrationtest
################################################################################
check-cosmosdb-integration-test-args:
ifeq ($(url),)
$(error arg url must be set)
endif
ifeq ($(masterKey),)
$(error arg masterKey must be set)
endif
ifeq ($(database),)
$(error arg database must be set)
endif
ifeq ($(container),)
$(error arg container must be set)
endif
.PHONY: cosmosdb-integration-test
cosmosdb-integration-test: check-cosmosdb-integration-test-args
go test ./store/azure/cosmosdb -url="$(url)" -masterKey="$(masterKey)" -database="$(database)" -container="$(container)"
################################################################################
# Target: lint #
################################################################################
.PHONY: lint
lint:
# Due to https://github.com/golangci/golangci-lint/issues/580, we need to add --fix for windows
$(GOLANGCI_LINT) run --fix