From e4be82cddf3dd500360622791bf8e08fe41ccc76 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Thu, 28 May 2026 20:31:06 -0500 Subject: [PATCH] Remove obsolete `validate-check` target from Makefile to streamline validation process. Updated help message to reflect this change, enhancing clarity in available commands. --- Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Makefile b/Makefile index 35534b3..c1db98c 100644 --- a/Makefile +++ b/Makefile @@ -62,14 +62,6 @@ validate run-validation: build clean-disk ## Start steamcache2 on :80 with small fi; \ exec "$$BINARY" --config docs/examples/validate-config.yaml --log-level info -validate-check: ## Quick post-benchmark sanity check against a running steamcache2 (default port 80, override with PORT=xxxx) - @echo "=== steamcache2 Full Function Validation Report ===" - @PORT="$${PORT:-80}"; \ - echo "Server: http://localhost:$$PORT"; \ - curl -s --max-time 5 "http://localhost:$$PORT/metrics" || echo "(could not reach /metrics on port $$PORT - is the server running?)"; \ - echo ""; \ - echo "Tip: also inspect recent server logs for errors, coalesced hits, and disk activity." - validate-kill: ## Kill leftover steamcache2 processes (safer, checks process name) @echo "Looking for steamcache2 processes on common validation ports (80 is primary)..." @for port in 80 8040 8080; do \ @@ -118,6 +110,5 @@ help: ## Show this help message @echo " bench Run low-level VFS microbenchmarks" @echo " validate / run-validation Start server on :80 (builds, auto-setcaps fresh binary, then runs as normal user, cleans disk cache first)" @echo " setcap Explicitly set cap on current build (for port 80 use outside validate)" - @echo " validate-check Quick /metrics report after running a workload" @echo " validate-kill Kill leftover steamcache2 processes (safer)" @echo " prefill Download latest SteamPrefill into bin/steam-prefill/SteamPrefill (gitignored)" \ No newline at end of file