Add dev harness routing all builds through the digest-pinned builder

This commit is contained in:
2026-08-29 06:26:22 -05:00
parent 4b9aa5fae5
commit c3b86b16b7
4 changed files with 82 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# Makefile: thin front door over dev.sh so `make build/vet/test/check/smoke`
# route through the digest-pinned Docker builder (ALL dev work in Docker —
# the host never runs a Go toolchain).
.PHONY: build vet test check smoke
build:
@./dev.sh build
vet:
@./dev.sh vet
test:
@./dev.sh test
check:
@./dev.sh check
smoke:
@./dev.sh smoke