mirror of
https://github.com/halverneus/static-file-server.git
synced 2024-11-24 09:05:30 +00:00
Merge pull request #67 from halverneus/bugfix/remove_race_flag_no_cgo
Removed the -race flag
This commit is contained in:
commit
d454a6fdbb
@ -8,7 +8,7 @@ RUN mkdir -p ${BUILD_DIR}
|
||||
WORKDIR ${BUILD_DIR}
|
||||
|
||||
COPY . .
|
||||
RUN go test -race -cover ./...
|
||||
RUN go test -cover ./...
|
||||
RUN GOOS=linux GOARCH=amd64 go build -a -tags netgo -installsuffix netgo -ldflags "-X github.com/halverneus/static-file-server/cli/version.version=${VERSION}" -o pkg/linux-amd64/serve /build/bin/serve
|
||||
RUN GOOS=linux GOARCH=386 go build -a -tags netgo -installsuffix netgo -ldflags "-X github.com/halverneus/static-file-server/cli/version.version=${VERSION}" -o pkg/linux-i386/serve /build/bin/serve
|
||||
RUN GOOS=linux GOARCH=arm GOARM=6 go build -a -tags netgo -installsuffix netgo -ldflags "-X github.com/halverneus/static-file-server/cli/version.version=${VERSION}" -o pkg/linux-arm6/serve /build/bin/serve
|
||||
|
Loading…
Reference in New Issue
Block a user