-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
92 lines (73 loc) · 2 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
# Code generated by go.einride.tech/sage. DO NOT EDIT.
# To learn more, see .sage/main.go and https://github.com/einride/sage.
.DEFAULT_GOAL := default
cwd := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
sagefile := $(abspath $(cwd)/.sage/bin/sagefile)
# Setup Go.
go := $(shell command -v go 2>/dev/null)
export GOWORK ?= off
ifndef go
SAGE_GO_VERSION ?= 1.20.2
export GOROOT := $(abspath $(cwd)/.sage/tools/go/$(SAGE_GO_VERSION)/go)
export PATH := $(PATH):$(GOROOT)/bin
go := $(GOROOT)/bin/go
os := $(shell uname | tr '[:upper:]' '[:lower:]')
arch := $(shell uname -m)
ifeq ($(arch),x86_64)
arch := amd64
endif
$(go):
$(info installing Go $(SAGE_GO_VERSION)...)
@mkdir -p $(dir $(GOROOT))
@curl -sSL https://go.dev/dl/go$(SAGE_GO_VERSION).$(os)-$(arch).tar.gz | tar xz -C $(dir $(GOROOT))
@touch $(GOROOT)/go.mod
@chmod +x $(go)
endif
.PHONY: $(sagefile)
$(sagefile): $(go)
@cd .sage && $(go) mod tidy && $(go) run .
.PHONY: sage
sage:
@$(MAKE) $(sagefile)
.PHONY: update-sage
update-sage: $(go)
@cd .sage && $(go) get -d go.einride.tech/sage@latest && $(go) mod tidy && $(go) run .
.PHONY: clean-sage
clean-sage:
@git clean -fdx .sage/tools .sage/bin .sage/build
.PHONY: backstage-validate
backstage-validate: $(sagefile)
@$(sagefile) BackstageValidate
.PHONY: convco-check
convco-check: $(sagefile)
@$(sagefile) ConvcoCheck
.PHONY: default
default: $(sagefile)
@$(sagefile) Default
.PHONY: format-markdown
format-markdown: $(sagefile)
@$(sagefile) FormatMarkdown
.PHONY: format-yaml
format-yaml: $(sagefile)
@$(sagefile) FormatYaml
.PHONY: git-verify-no-diff
git-verify-no-diff: $(sagefile)
@$(sagefile) GitVerifyNoDiff
.PHONY: go-format
go-format: $(sagefile)
@$(sagefile) GoFormat
.PHONY: go-licenses
go-licenses: $(sagefile)
@$(sagefile) GoLicenses
.PHONY: go-lint
go-lint: $(sagefile)
@$(sagefile) GoLint
.PHONY: go-lint-fix
go-lint-fix: $(sagefile)
@$(sagefile) GoLintFix
.PHONY: go-mod-tidy
go-mod-tidy: $(sagefile)
@$(sagefile) GoModTidy
.PHONY: go-test
go-test: $(sagefile)
@$(sagefile) GoTest