Skip to content

Commit

Permalink
chore(script): announce which part is perf audited (#873)
Browse files Browse the repository at this point in the history
topic:chorescript-announce-which-part-is-perf-audited
  • Loading branch information
kaihowl authored Dec 15, 2024
1 parent 4050edb commit 066d2bb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions script/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,31 @@ publish_measurements

audit_failed=false

echo auditing nvim
if ! audit_measurements nvim; then
echo "nvim audit failed"
audit_failed=true
fi

echo auditing zsh
if ! audit_measurements zsh; then
echo "zsh audit failed"
audit_failed=true
fi

echo auditing ci
if ! audit_measurements ci; then
echo "ci audit failed"
audit_failed=true
fi

echo auditing test
if ! audit_measurements test; then
echo "test audit failed"
audit_failed=true
fi

echo auditing nix
if ! audit_measurements nix-closure-size; then
echo "nix audit failed"
audit_failed=true
Expand Down

0 comments on commit 066d2bb

Please sign in to comment.