mirror of
https://github.com/containerd/containerd.git
synced 2026-07-07 07:07:50 +00:00
Race is only supported on amd64, so only run if GOARCH is amd64 Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
12 lines
186 B
Makefile
12 lines
186 B
Makefile
#Windows specific settings.
|
|
WHALE = "+"
|
|
ONI = "-"
|
|
FIX_PATH = $(subst /,\,$1)
|
|
|
|
BINARY_SUFFIX=".exe"
|
|
|
|
# amd64 supports go test -race
|
|
ifeq ("amd64", $(GOARCH))
|
|
TESTFLAGS_RACE= -race
|
|
endif
|