From 89200a2b95ec447a9079f2aebf8873adf756a45b Mon Sep 17 00:00:00 2001 From: Jesse Hallam Date: Mon, 25 May 2026 12:57:58 -0300 Subject: [PATCH] fix(ci): drop tail -20 pipe from go test in go-cache target --- server/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/Makefile b/server/Makefile index 5039e618b01..76c25e3978d 100644 --- a/server/Makefile +++ b/server/Makefile @@ -445,8 +445,8 @@ go-cache: setup-go-work install-ci-tools ## Pre-warm Go module and build cache f @(cd public && $(GO) mod download all) $(GO) build ./... @(cd public && $(GO) build ./...) - $(GO) test -run=^$$ -count=1 ./... 2>&1 | tail -20 - @(cd public && $(GO) test -run=^$$ -count=1 ./... 2>&1 | tail -20) + $(GO) test -run=^$$ -count=1 ./... || true + @(cd public && $(GO) test -run=^$$ -count=1 ./... || true) test-compile: setup-go-work gotestsum ## Compile tests. @echo COMPILE TESTS