-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
173 lines (148 loc) · 5.14 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
.ONESHELL:
.SHELLFLAGS += -x -e
PWD = $(shell pwd)
UID = $(shell id -u)
GID = $(shell id -g)
VERSION = "0.14.1"
LD_FLAGS = -X beryju.io/gravity/pkg/extconfig.Version=${VERSION}
GO_FLAGS = -ldflags "${LD_FLAGS}" -v
SCHEMA_FILE = schema.yml
TEST_COUNT = 1
TEST_FLAGS =
ci--env:
echo "sha=${GITHUB_SHA}" >> ${GITHUB_OUTPUT}
echo "build=${GITHUB_RUN_ID}" >> ${GITHUB_OUTPUT}
echo "timestamp=$(shell date +%s)" >> ${GITHUB_OUTPUT}
echo "version=${VERSION}" >> ${GITHUB_OUTPUT}
docker-build: internal/resources/macoui internal/resources/blocky internal/resources/tftp
go build \
-ldflags "${LD_FLAGS} -X beryju.io/gravity/pkg/extconfig.BuildHash=${GIT_BUILD_HASH}" \
-v -a -o gravity .
clean:
rm -rf ${PWD}/data/
run: internal/resources/macoui internal/resources/blocky internal/resources/tftp
export INSTANCE_LISTEN=0.0.0.0
export DEBUG=true
export LISTEN_ONLY=true
$(eval LD_FLAGS := -X beryju.io/gravity/pkg/extconfig.Version=${VERSION} -X beryju.io/gravity/pkg/extconfig.BuildHash=dev-$(shell git rev-parse HEAD))
go run ${GO_FLAGS} . server
# Web
web-install:
cd ${PWD}/web
npm ci
npm version ${VERSION} || true
web-build:
cd ${PWD}/web
npm run build
web-watch:
cd ${PWD}/web
npm run watch
web-lint:
cd ${PWD}/web
npm run prettier
npm run lint
npm run lit-analyse
# Website
website-watch:
cd ${PWD}/docs
open http://localhost:1313/ && hugo server --noBuildLock
internal/resources/macoui:
mkdir -p internal/resources/macoui
curl -L https://raw.githubusercontent.com/wireshark/wireshark/6885d787fda5f74a2d1f9eeea443fecf8dd58528/manuf -o ./internal/resources/macoui/db.txt
internal/resources/blocky:
mkdir -p internal/resources/blocky
curl -L https://adaway.org/hosts.txt -o ./internal/resources/blocky/adaway.org.txt
curl -L https://big.oisd.nl/domainswild -o ./internal/resources/blocky/big.oisd.nl.txt
curl -L https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts -o ./internal/resources/blocky/StevenBlack.hosts.txt
curl -L https://v.firebog.net/hosts/AdguardDNS.txt -o ./internal/resources/blocky/AdguardDNS.txt
curl -L https://v.firebog.net/hosts/Easylist.txt -o ./internal/resources/blocky/Easylist.txt
curl -L https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt -o ./internal/resources/blocky/AdGuardSDNSFilter.txt
internal/resources/tftp:
mkdir -p internal/resources/tftp
curl -L http://boot.ipxe.org/undionly.kpxe -o ./internal/resources/tftp/ipxe.undionly.kpxe
curl -L https://boot.netboot.xyz/ipxe/netboot.xyz.kpxe -o ./internal/resources/tftp/netboot.xyz.kpxe
curl -L https://boot.netboot.xyz/ipxe/netboot.xyz-undionly.kpxe -o ./internal/resources/tftp/netboot.xyz-undionly.kpxe
curl -L https://boot.netboot.xyz/ipxe/netboot.xyz.efi -o ./internal/resources/tftp/netboot.xyz.efi
gen-build:
DEBUG=true go run ${GO_FLAGS} . generateSchema ${SCHEMA_FILE}
git add ${SCHEMA_FILE}
gen-clean:
rm -rf ${PWD}/gen-ts-api/
rm -rf ${PWD}/api/api/
rm -rf ${PWD}/api/docs/
rm -rf ${PWD}/api/test/
rm -rf ${PWD}/api/*.go
gen-tag:
git add Makefile
cd ${PWD}
git commit -m "tag version v${VERSION}"
git tag v${VERSION}
gen-client-go:
docker run \
--rm -v ${PWD}:/local \
--user ${UID}:${GID} \
openapitools/openapi-generator-cli:v6.6.0 generate \
--git-host beryju.io \
--git-user-id gravity \
--git-repo-id api \
--additional-properties=packageName=api \
-i /local/schema.yml \
-g go \
-o /local/api \
-c /local/api/config.yaml
cd ${PWD}/api/
rm -f .travis.yml go.mod go.sum
go get
go fmt .
go mod tidy
gofumpt -l -w . || true
git add .
gen-client-ts:
docker run \
--rm -v ${PWD}:/local \
--user ${UID}:${GID} \
openapitools/openapi-generator-cli:v6.6.0 generate \
-i /local/${SCHEMA_FILE} \
-g typescript-fetch \
-o /local/gen-ts-api \
--additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=gravity-api,npmVersion=${VERSION} \
--git-repo-id BeryJu \
--git-user-id gravity
cd ${PWD}/gen-ts-api && npm i
\cp -rf ${PWD}/gen-ts-api/* ${PWD}/web/node_modules/gravity-api
gen-client-ts-update: gen-client-ts
cd ${PWD}/gen-ts-api
npm publish
cd ${PWD}/web
npm i gravity-api@${VERSION}
npm version ${VERSION} || true
git add package*.json
gen: gen-build gen-clean gen-client-go gen-client-ts-update gen-tag
lint: web-lint
golangci-lint run -v --timeout 5000s
test-env-start:
cd ${PWD}/hack/tests/
docker compose --project-name gravity-test-env up -d
test-env-stop:
cd ${PWD}/hack/tests/
docker compose --project-name gravity-test-env down -v
install-deps: internal/resources/macoui internal/resources/blocky internal/resources/tftp
sudo apt-get install -y nmap libpcap-dev
sudo sysctl -w net.ipv4.ping_group_range="0 2147483647"
test-local:
$(eval TEST_COUNT := 100)
$(eval TEST_FLAGS := -v -shuffle=on -failfast)
test: internal/resources/macoui internal/resources/blocky internal/resources/tftp
export BOOTSTRAP_ROLES="dns;dhcp;api;discovery;backup;debug;tsdb;tftp"
export ETCD_ENDPOINT="localhost:2385"
export DEBUG="true"
export LISTEN_ONLY="true"
go run -v . cli etcdctl del --prefix /
go test \
-p 1 \
-coverprofile=coverage.txt \
-covermode=atomic \
-count=${TEST_COUNT} \
${TEST_FLAGS} \
./... 2>&1 | tee test-output
go tool cover -html coverage.txt -o coverage.html