forked from onflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
123 lines (95 loc) Β· 3.33 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#
# Cadence - The resource-oriented smart contract programming language
#
# Copyright Dapper Labs, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
GOPATH ?= $(HOME)/go
# Ensure go bin path is in path (Especially for CI)
PATH := $(PATH):$(GOPATH)/bin
COVERPKGS := $(shell go list ./... | grep -v /cmd | grep -v /runtime/test | tr "\n" "," | sed 's/,*$$//')
LINTERS :=
ifneq ($(linters),)
LINTERS = -E $(linters)
endif
.PHONY: build
build: build-tools ./runtime/cmd/parse/parse ./runtime/cmd/parse/parse.wasm ./runtime/cmd/check/check ./runtime/cmd/main/main
./runtime/cmd/parse/parse:
go build -o $@ ./runtime/cmd/parse
./runtime/cmd/parse/parse.wasm:
GOARCH=wasm GOOS=js go build -o $@ ./runtime/cmd/parse
./runtime/cmd/check/check:
go build -o $@ ./runtime/cmd/check
./runtime/cmd/main/main:
go build -o $@ ./runtime/cmd/main
.PHONY: build-tools
build-tools: build-analysis build-batch-script
.PHONY: build-analysis
build-analysis:
(cd ./tools/analysis && go build .)
.PHONY: build-batch-script
build-batch-script:
(cd ./tools/batch-script && go build .)
.PHONY: ci
ci:
# test all packages
go test -coverprofile=coverage.txt -covermode=atomic -parallel 8 -race -coverpkg $(COVERPKGS) ./...
# run interpreter smoke tests. results from run above are reused, so no tests runs are duplicated
go test -count=5 ./runtime/tests/interpreter/... -runSmokeTests=true -validateAtree=false
# remove coverage of empty functions from report
sed -i -e 's/^.* 0 0$$//' coverage.txt
.PHONY: test
test:
# test all packages
go test -parallel 8 ./...
.PHONY: lint-github-actions
lint-github-actions: build-linter
tools/golangci-lint/golangci-lint run --out-format=colored-line-number,github-actions --timeout=5m -v ./...
.PHONY: lint
lint: build-linter
tools/golangci-lint/golangci-lint run $(LINTERS) --timeout=5m -v ./...
.PHONY: fix-lint
fix-lint: build-linter
tools/golangci-lint/golangci-lint run -v --fix --timeout=5m $(LINTERS) ./...
.PHONY: build-linter
build-linter: tools/golangci-lint/golangci-lint tools/maprange/maprange.so tools/unkeyed/unkeyed.so tools/constructorcheck/constructorcheck.so
tools/maprange/maprange.so:
(cd tools/maprange && $(MAKE))
tools/unkeyed/unkeyed.so:
(cd tools/unkeyed && $(MAKE))
tools/constructorcheck/constructorcheck.so:
(cd tools/constructorcheck && $(MAKE))
tools/golangci-lint/golangci-lint:
(cd tools/golangci-lint && $(MAKE))
.PHONY: clean-linter
clean-linter:
rm -f tools/golangci-lint/golangci-lint \
tools/maprange/maprange.so \
tools/unkeyed/unkeyed.so \
tools/constructorcheck/constructorcheck.so
.PHONY: check-headers
check-headers:
@./check-headers.sh
.PHONY: generate
generate:
go generate -v ./...
.PHONY: check-tidy
check-tidy: generate
go mod tidy
git diff --exit-code
.PHONY: release
release:
@(VERSIONED_FILES="version.go \
npm-packages/cadence-parser/package.json" \
bash ./bump-version.sh $(bump))