Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: tools in scripts use fixed version to avoid incompatible updates #16819

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ unset-override:

pre-format: unset-override
@rustup component add rustfmt
@which cargo-sort &> /dev/null || cargo +nightly install -q cargo-sort
@which cargo-sort &> /dev/null || cargo +nightly install -q cargo-sort@1.0.9

format: pre-format
@cargo fmt
Expand Down Expand Up @@ -376,7 +376,7 @@ audit: pre-audit
cargo audit

check-udeps:
which cargo-udeps &>/dev/null || cargo install cargo-udeps && cargo udeps
which cargo-udeps &>/dev/null || cargo install cargo-udeps@0.1.47 && cargo udeps

FUZZER ?= Honggfuzz

Expand Down
2 changes: 1 addition & 1 deletion scripts/gen-tikv-details-dashboard
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ root_dir=$(realpath "$(dirname "$(realpath "$0")")/..")
docker build -t tikv-dashboard-gen -f - . <<EOF
FROM pyfound/black:23.11.0

RUN pip install isort grafanalib==v0.7.0
RUN pip install isort==5.13.2 grafanalib==v0.7.0

CMD ["bash"]
EOF
Expand Down