mirror of
https://github.com/walles/moar.git
synced 2024-11-22 11:45:50 +03:00
fbc1dc9e49
One is failing. Ref: https://github.com/walles/moar/issues/140
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
# Run the tests in 32 bit mode:
|
|
# docker build . -f Dockerfile-test-386
|
|
|
|
FROM golang:1.20
|
|
|
|
WORKDIR /moar
|
|
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
RUN GOARCH=386 go test -v ./...
|