-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg/files/docker: enable race detector by default
Race detector is especially important in integration tests, because they often end up testing many things against the services, which are more likely to find out weird hidden races. Change-Id: I6ee356a3e8d609d422ac7a7a0cd0cd14a9cbf099
- Loading branch information
Showing
6 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,12 +42,12 @@ build-app: | |
test: | ||
RUN go install github.com/mfridman/tparse@36f80740879e24ba6695649290a240c5908ffcbb | ||
RUN apt-get update && apt-get install -y jq | ||
RUN go install storj.io/storj/cmd/[email protected] | ||
RUN go install storj.io/storj/cmd/[email protected] | ||
RUN go install storj.io/storj/cmd/[email protected] | ||
RUN go install storj.io/edge/cmd/[email protected] | ||
RUN go install storj.io/edge/cmd/[email protected] | ||
RUN go install storj.io/edge/cmd/[email protected] | ||
RUN go install -race storj.io/storj/cmd/[email protected] | ||
RUN go install -race storj.io/storj/cmd/[email protected] | ||
RUN go install -race storj.io/storj/cmd/[email protected] | ||
RUN go install -race storj.io/edge/cmd/[email protected] | ||
RUN go install -race storj.io/edge/cmd/[email protected] | ||
RUN go install -race storj.io/edge/cmd/[email protected] | ||
RUN mkdir build | ||
COPY . . | ||
RUN --mount=type=cache,target=/root/.cache/go-build \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters