Skip to content

Commit

Permalink
remove -race flag from binaries (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-dionysos authored Nov 19, 2024
1 parent d72efde commit 6bf23cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ buildAllBinaries:
binary-specific-service:
set -xe; \
echo "$@: $(SERVICE_NAME) / $(GOOS) / $(GOARCH)" ; \
go build -tags "go_json linux sqlite_stat4 sqlite_icu" -a -v -race -o ./cmd/$${SERVICE_NAME}/bin ./cmd/$${SERVICE_NAME}; \
go build -tags "go_json linux sqlite_stat4 sqlite_icu" -a -v -o ./cmd/$${SERVICE_NAME}/bin ./cmd/$${SERVICE_NAME}; \
cp ./cmd/$${SERVICE_NAME}/bin ./$${SERVICE_NAME}.$${GOOS}.$${GOARCH}.bin; \

all: checkLicense checkModVersion checkIfAllDependenciesAreUpToDate checkGenerated build test coverage benchmark clean
Expand Down

0 comments on commit 6bf23cd

Please sign in to comment.