drop unused bench-create script + Makefile target

The script carried a python3 dep for one json.dumps on a VM name
that's always alphanumeric-plus-dashes anyway, it was never wired
into CI or docs, and `time banger vm create` covers the same need
ad hoc when anyone wants to measure create latency.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Thales Maciel 2026-04-20 13:33:09 -03:00
parent 58464ac28c
commit afe91e805a
No known key found for this signature in database
GPG key ID: 33112E6833C34679
2 changed files with 2 additions and 126 deletions

View file

@ -28,7 +28,7 @@ GO_LDFLAGS := -X banger/internal/buildinfo.Version=$(VERSION) -X banger/internal
.DEFAULT_GOAL := help
.PHONY: help build banger bangerd test fmt tidy clean install uninstall bench-create lint lint-go lint-shell coverage coverage-html coverage-total
.PHONY: help build banger bangerd test fmt tidy clean install uninstall lint lint-go lint-shell coverage coverage-html coverage-total
help:
@printf '%s\n' \
@ -43,8 +43,7 @@ help:
' make lint Run gofmt + go vet + shellcheck (errors)' \
' make fmt Format Go sources under cmd/ and internal/' \
' make tidy Run go mod tidy' \
' make clean Remove built Go binaries and coverage artefacts' \
' make bench-create Benchmark vm create and SSH readiness with scripts/bench-create.sh'
' make clean Remove built Go binaries and coverage artefacts'
build: $(BINARIES)
@ -102,9 +101,6 @@ tidy:
clean:
rm -rf "$(BUILD_BIN_DIR)" coverage.out coverage.html
bench-create: build
BANGER_BIN="$(abspath $(BANGER_BIN))" bash ./scripts/bench-create.sh $(ARGS)
install: build
mkdir -p "$(DESTDIR)$(BINDIR)"
mkdir -p "$(DESTDIR)$(LIBDIR)/banger"