From d63d1e3cc35b192bae9d443819844688fadbe857 Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 28 Jul 2026 02:43:16 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20scratch=20test=20script?= =?UTF-8?q?=20accidentally=20committed=20=F0=9F=A7=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - .claude-test.sh: deleted — this was a throwaway local test harness used while verifying the entrypoint.sh/Dockerfile fixes, explicitly out of the AI.md runbook's scope, and was swept into the prior commit (d0b2477dada7) by mistake. --- .claude-test.sh | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 .claude-test.sh diff --git a/.claude-test.sh b/.claude-test.sh deleted file mode 100755 index de1ae73..0000000 --- a/.claude-test.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -set -x -echo "== rustc =="; rustc --version -echo "== cargo =="; cargo --version -echo "== rustfmt =="; rustfmt --version -echo "== clippy =="; cargo clippy --version -echo "== just =="; just --version -echo "== sccache =="; sccache --version -echo "== cargo-nextest =="; cargo nextest --version -echo "== cargo-audit =="; cargo audit --version -echo "== cargo-binstall =="; cargo binstall --version -echo "== targets installed =="; rustup target list --installed -echo "== nightly + miri =="; rustup run nightly rustc --version; cargo +nightly miri --version -echo "== cross compile aarch64-musl hello world ==" -mkdir -p /tmp/hello && cd /tmp/hello -cat > Cargo.toml <<'EOF' -[package] -name = "hello" -version = "0.1.0" -edition = "2021" -EOF -mkdir -p src -echo 'fn main() { println!("hello cross"); }' > src/main.rs -cargo build --release --target aarch64-unknown-linux-musl -file target/aarch64-unknown-linux-musl/release/hello -echo "== rust-workflow help ==" -rust-workflow --help 2>&1 | head -20 || echo "rust-workflow not found or errored" -echo "== ALL DONE =="