-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
justfile
219 lines (176 loc) Β· 5.76 KB
/
justfile
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
set positional-arguments
watch +args='test':
cargo watch --clear --exec '{{args}}'
ci: clippy forbid
cargo fmt -- --check
cargo test --all
cargo test --all -- --ignored
forbid:
./bin/forbid
fmt:
cargo fmt --all
clippy:
cargo clippy --all --all-targets -- --deny warnings
install-git-hooks:
#!/usr/bin/env bash
set -euo pipefail
for hook in hooks/*; do
name=$(basename "$hook")
if [ ! -e ".git/hooks/$name" ]; then
ln -s "$PWD/$hook" ".git/hooks/$name"
fi
done
deploy branch remote chain domain:
ssh root@{{domain}} '\
export DEBIAN_FRONTEND=noninteractive \
&& mkdir -p deploy \
&& apt-get update --yes \
&& apt-get upgrade --yes \
&& apt-get install --yes git rsync'
rsync -avz deploy/checkout root@{{domain}}:deploy/checkout
ssh root@{{domain}} 'cd deploy && ./checkout {{branch}} {{remote}} {{chain}} {{domain}}'
deploy-mainnet-alpha branch='master' remote='ordinals/ord': \
(deploy branch remote 'main' 'alpha.ordinals.net')
deploy-mainnet-bravo branch='master' remote='ordinals/ord': \
(deploy branch remote 'main' 'bravo.ordinals.net')
deploy-mainnet-charlie branch='master' remote='ordinals/ord': \
(deploy branch remote 'main' 'charlie.ordinals.net')
deploy-signet branch='master' remote='ordinals/ord': \
(deploy branch remote 'signet' 'signet.ordinals.net')
deploy-testnet branch='master' remote='ordinals/ord': \
(deploy branch remote 'test' 'testnet.ordinals.net')
deploy-all: \
deploy-testnet \
deploy-signet \
deploy-mainnet-alpha \
deploy-mainnet-bravo \
deploy-mainnet-charlie
delete-indices: \
(delete-index "signet.ordinals.net") \
(delete-index "testnet.ordinals.net")
delete-index domain:
ssh root@{{domain}} 'systemctl stop ord && rm -f /var/lib/ord/*/index.redb'
servers := 'alpha bravo charlie signet testnet'
initialize-server-keys:
#!/usr/bin/env bash
set -euxo pipefail
rm -rf tmp/ssh
mkdir -p tmp/ssh
ssh-keygen -C ordinals -f tmp/ssh/id_ed25519 -t ed25519 -N ''
for server in {{ servers }}; do
ssh-copy-id -i tmp/ssh/id_ed25519.pub root@$server.ordinals.net
scp tmp/ssh/* root@$server.ordinals.net:.ssh
done
rm -rf tmp/ssh
install-personal-key key='~/.ssh/id_ed25519.pub':
#!/usr/bin/env bash
set -euxo pipefail
for server in {{ servers }}; do
ssh-copy-id -i {{ key }} root@$server.ordinals.net
done
server-keys:
#!/usr/bin/env bash
set -euxo pipefail
for server in {{ servers }}; do
ssh root@$server.ordinals.net cat .ssh/authorized_keys
done
log unit='ord' domain='alpha.ordinals.net':
ssh root@{{domain}} 'journalctl -fu {{unit}}'
fuzz:
#!/usr/bin/env bash
set -euxo pipefail
cd fuzz
while true; do
cargo +nightly fuzz run runestone-decipher -- -max_total_time=60
cargo +nightly fuzz run varint-decode -- -max_total_time=60
cargo +nightly fuzz run varint-encode -- -max_total_time=60
cargo +nightly fuzz run transaction-builder -- -max_total_time=60
done
open:
open http://localhost
doc:
cargo doc --workspace --exclude audit-content-security-policy --exclude audit-cache --open
prepare-release revision='master':
#!/usr/bin/env bash
set -euxo pipefail
git checkout {{ revision }}
git pull origin {{ revision }}
echo >> CHANGELOG.md
git log --pretty='format:- %s' >> CHANGELOG.md
$EDITOR CHANGELOG.md
$EDITOR Cargo.toml
version=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
cargo check
git checkout -b release-$version
git add -u
git commit -m "Release $version"
gh pr create --web
publish-release revision='master':
#!/usr/bin/env bash
set -euxo pipefail
rm -rf tmp/release
git clone https://github.com/ordinals/ord.git tmp/release
cd tmp/release
git checkout {{ revision }}
cargo publish
cd ../..
rm -rf tmp/release
publish-tag-and-crate revision='master':
#!/usr/bin/env bash
set -euxo pipefail
rm -rf tmp/release
git clone git@github.com:ordinals/ord.git tmp/release
cd tmp/release
git checkout {{revision}}
version=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
git tag -a $version -m "Release $version"
git push git@github.com:ordinals/ord.git $version
cargo publish
cd ../..
rm -rf tmp/release
outdated:
cargo outdated --root-deps-only --workspace
unused:
cargo +nightly udeps --workspace
update-modern-normalize:
curl \
https://raw.githubusercontent.com/sindresorhus/modern-normalize/main/modern-normalize.css \
> static/modern-normalize.css
download-log unit='ord' host='alpha.ordinals.net':
ssh root@{{host}} 'mkdir -p tmp && journalctl -u {{unit}} > tmp/{{unit}}.log'
mkdir -p tmp/{{unit}}
rsync --progress --compress root@{{host}}:tmp/{{unit}}.log tmp/{{unit}}.log
graph log:
./bin/graph $1
flamegraph dir=`git branch --show-current`:
./bin/flamegraph $1
serve-docs: build-docs
python3 -m http.server --directory docs/build/html --bind 127.0.0.1 8080
open-docs:
open http://127.0.0.1:8080
build-docs:
#!/usr/bin/env bash
mdbook build docs -d build
for language in ar de es fil fr hi it ja ko pt ru zh nl; do
MDBOOK_BOOK__LANGUAGE=$language mdbook build docs -d build/$language
mv docs/build/$language/html docs/build/html/$language
done
update-changelog:
echo >> CHANGELOG.md
git log --pretty='format:- %s' >> CHANGELOG.md
convert-logo-to-favicon:
convert -background none -resize 256x256 logo.svg static/favicon.png
update-mdbook-theme:
curl \
https://raw.githubusercontent.com/rust-lang/mdBook/v0.4.35/src/theme/index.hbs \
> docs/theme/index.hbs
audit-cache:
cargo run --package audit-cache
audit-content-security-policy:
cargo run --package audit-content-security-policy
coverage:
cargo llvm-cov
benchmark-server:
cargo bench --bench server
update-contributors:
cargo run --release --package update-contributors