From 1ffcff5556d5f6883ad9159bea67779713ca8dca Mon Sep 17 00:00:00 2001 From: apostasie Date: Sat, 15 Aug 2026 19:24:39 -0700 Subject: [PATCH] Cleanup Signed-off-by: apostasie --- .github/dependabot.yml | 6 ------ Justfile | 19 +------------------ 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index f1b219b4..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "gomod" - directory: "/" - schedule: - interval: "weekly" diff --git a/Justfile b/Justfile index 91d8dafe..4c2e385c 100644 --- a/Justfile +++ b/Justfile @@ -6,22 +6,5 @@ import '.limen/just/main.just' # The FIRST recipe defined here becomes `just`'s default. lint: do::lint::go::default do::lint::default fix: do::fix::go::default do::fix::default -test: do::test::go::unit do::test::go::race test-386 +test: do::test::go::unit do::test::go::race bench: do::test::go::bench - -# 32-bit coverage: this codebase is int-width sensitive — dictionary and buffer -# arithmetic, int64 stream sizes narrowed to int, and index records whose -# declared sizes are bounded against the address space — and none of that is -# exercised by a 64-bit run. No development machine is 32-bit, but 386 binaries -# execute natively on amd64 hosts, so the amd64 CI legs run this for free; -# other hosts skip it loudly rather than silently reporting a pass they never -# obtained. The race detector does not support 386. -[doc('Run the tests as GOARCH=386 (executes natively on amd64 hosts; skipped elsewhere)')] -test-386: - #!/usr/bin/env bash - set -euo pipefail - if [ "$(go env GOHOSTARCH)" != "amd64" ]; then - echo "GOARCH=386 binaries need an amd64 host to execute; skipping" - exit 0 - fi - CGO_ENABLED=0 GOARCH=386 go test -count=1 -timeout "${TEST_GO_TIMEOUT:-10m}" ./...