mirror of
https://github.com/instructkr/claude-code.git
synced 2026-05-26 07:26:46 +00:00
Add a repository-local pre-push gate that runs the locked Rust workspace build from the repo root, plus concise install and verification docs for maintainers. Constraint: ROADMAP #694 requires a local installable hook artifact only; branch protection remains external. Rejected: CI or branch-protection changes | outside the requested local pre-push gate scope. Confidence: high Scope-risk: narrow Directive: Keep .github/hooks/pre-push and contributor docs synchronized if the Rust workspace build command changes. Tested: bash -n .github/hooks/pre-push; SKIP_CLAW_PRE_PUSH_BUILD=1 .github/hooks/pre-push; git diff --check; python3 .github/scripts/check_doc_source_of_truth.py; cargo fmt --manifest-path rust/Cargo.toml --all -- --check; cargo build --manifest-path rust/Cargo.toml --workspace --locked; .github/hooks/pre-push Not-tested: shellcheck and markdownlint unavailable in environment.
27 lines
762 B
Bash
Executable File
27 lines
762 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Claw Code local pre-push safety gate.
|
|
#
|
|
# Install with:
|
|
# git config core.hooksPath .github/hooks
|
|
#
|
|
# This intentionally mirrors the CI build gate so stale field/enum references are
|
|
# caught before pushing to main or PR branches.
|
|
set -euo pipefail
|
|
|
|
if [[ "${SKIP_CLAW_PRE_PUSH_BUILD:-}" == "1" ]]; then
|
|
echo "pre-push: SKIP_CLAW_PRE_PUSH_BUILD=1 set; skipping cargo workspace build" >&2
|
|
exit 0
|
|
fi
|
|
|
|
repo_root="$(git rev-parse --show-toplevel 2>/dev/null)"
|
|
cd "$repo_root"
|
|
|
|
if [[ ! -f rust/Cargo.toml ]]; then
|
|
echo "pre-push: rust/Cargo.toml not found; skipping cargo workspace build" >&2
|
|
exit 0
|
|
fi
|
|
|
|
build_cmd=(cargo build --manifest-path rust/Cargo.toml --workspace --locked)
|
|
echo "pre-push: ${build_cmd[*]}" >&2
|
|
"${build_cmd[@]}"
|