forked from defi-wonderland/optimism
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjustfile
More file actions
42 lines (34 loc) · 1.64 KB
/
justfile
File metadata and controls
42 lines (34 loc) · 1.64 KB
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
# Checks that TODO comments have corresponding issues.
todo-checker:
./ops/scripts/todo-checker.sh
# Runs semgrep on the entire monorepo.
semgrep:
semgrep scan --config .semgrep/rules/ --error .
# Runs semgrep tests.
semgrep-test:
semgrep scan --test --config .semgrep/rules/ .semgrep/tests/
# Runs shellcheck.
shellcheck:
find . -type f -name '*.sh' -not -path '*/node_modules/*' -not -path './packages/contracts-bedrock/lib/*' -not -path './packages/contracts-bedrock/kout*/*' -exec sh -c 'echo "Checking $1"; shellcheck "$1"' _ {} \;
find . -type f -name '*.sh' -not -path '*/node_modules/*' -not -path './packages/contracts-bedrock/lib/*' -not -path './packages/contracts-bedrock/kout*/*' -exec shfmt --diff {} \;
# Format shell scripts with shfmt.
shfmt-fix:
find . -type f -name '*.sh' -not -path '*/node_modules/*' -not -path './packages/contracts-bedrock/lib/*' -not -path './packages/contracts-bedrock/kout*/*' -exec shfmt --write {} \;
# Generates a table of contents for the README.md file.
toc:
md_toc -p github README.md
latest-versions:
./ops/scripts/latest-versions.sh
# Usage:
# just update-op-geth 2f0528b
# just update-op-geth v1.101602.4
# just update-op-geth optimism
update-op-geth ref:
@ref="{{ref}}"; \
if [ -z "$ref" ]; then echo "error: provide a hash/tag/branch"; exit 1; fi; \
tmpl=$(printf "\173\173.Version\175\175"); \
ver=$(go list -m -f "$tmpl" github.com/ethereum-optimism/op-geth@"$ref"); \
if [ -z "$ver" ]; then echo "error: couldn't resolve $ref"; exit 1; fi; \
go mod edit -replace=github.com/ethereum/go-ethereum=github.com/ethereum-optimism/op-geth@"$ver"; \
go mod tidy; \
echo "Updated op-geth to $ver"