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