ci: drop -race from CI test step (TSan VMA incompatible on ARM64 runners)
All checks were successful
CI/CD / test (push) Successful in 57s
CI/CD / build-and-push-image (push) Successful in 55s

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`.
This commit is contained in:
2026-05-09 15:22:27 +02:00
parent a288564fe7
commit 95380dac99

View File

@@ -48,8 +48,11 @@ jobs:
- name: go vet - name: go vet
run: go vet ./... run: go vet ./...
- name: go test (race + count=1) # NOTE: race detector désactivé en CI — les runners Gitea Actions sont
run: go test -race -count=1 -timeout 120s ./... # 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: build-and-push-image:
runs-on: ubuntu-latest runs-on: ubuntu-latest