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`.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user