fix(ci): add gcc/musl-dev for race detector in test step

This commit is contained in:
2026-02-22 10:15:17 +01:00
parent a796443b1c
commit f07eac1811

View File

@@ -12,8 +12,8 @@ steps:
test:
image: golang:1.25-alpine
commands:
- apk add --no-cache git
- go test ./... -v -count=1 -race
- apk add --no-cache git gcc musl-dev
- CGO_ENABLED=1 go test ./... -v -count=1 -race
build:
image: golang:1.25-alpine