From 95380dac991e5866d25b50ae9f8feb3880908fbf Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Sat, 9 May 2026 15:22:27 +0200 Subject: [PATCH] ci: drop -race from CI test step (TSan VMA incompatible on ARM64 runners) The Gitea Actions runners are on ARM64 (pi1/pi3) and Go's ThreadSanitizer fails with 'unsupported VMA range, Found 47 - Supported 48' on those kernels. Race detector is still available locally via `make test-race`. --- .gitea/workflows/dockerimage.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/dockerimage.yaml b/.gitea/workflows/dockerimage.yaml index ffc29d0..f7cf71f 100644 --- a/.gitea/workflows/dockerimage.yaml +++ b/.gitea/workflows/dockerimage.yaml @@ -48,8 +48,11 @@ jobs: - name: go vet run: go vet ./... - - name: go test (race + count=1) - run: go test -race -count=1 -timeout 120s ./... + # NOTE: race detector désactivé en CI — les runners Gitea Actions sont + # sur ARM64 (RPi pi1/pi3) et ThreadSanitizer y échoue en VMA range + # incompatible. Race est exécuté localement via `make test-race`. + - name: go test + run: go test -count=1 -timeout 120s ./... build-and-push-image: runs-on: ubuntu-latest