File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -520,6 +520,7 @@ steps:
520
520
environment :
521
521
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
522
522
TAGS : bindata sqlite sqlite_unlock_notify
523
+ RACE_ENABLED : " 0"
523
524
524
525
- name : gpg-sign
525
526
pull : always
@@ -616,6 +617,7 @@ steps:
616
617
environment :
617
618
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
618
619
TAGS : bindata sqlite sqlite_unlock_notify
620
+ RACE_ENABLED : " 0"
619
621
620
622
- name : gpg-sign
621
623
pull : always
Original file line number Diff line number Diff line change @@ -64,13 +64,9 @@ EXTRA_GOFLAGS ?=
64
64
MAKE_VERSION := $(shell $(MAKE ) -v | head -n 1)
65
65
MAKE_EVIDENCE_DIR := .make_evidence
66
66
67
- ifneq ($(RACE_ENABLED ) ,)
68
- ifeq ($(RACE_ENABLED),"all")
69
- GOFLAGS += -race
70
- GOTESTFLAGS += -race
71
- else
72
- GOTESTFLAGS ?= -race
73
- endif
67
+ ifneq ($(RACE_ENABLED ) ,"0")
68
+ GOFLAGS += -race
69
+ GOTESTFLAGS += -race
74
70
endif
75
71
76
72
STORED_VERSION_FILE := VERSION
You can’t perform that action at this time.
0 commit comments