Skip to content

Commit 06d62bc

Browse files
committed
remove parallelism to see if it fixes flakiness
Signed-off-by: Mohamed Hamza <[email protected]>
1 parent 654a4dd commit 06d62bc

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/unit_race.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ jobs:
121121
export VTDATAROOT="/tmp/"
122122
123123
export NOVTADMINBUILD=1
124-
export VT_GO_PARALLEL_VALUE=$(nproc)
125124
export VTEVALENGINETEST="0"
126125
# We sometimes need to alter the behavior based on the platform we're
127126
# testing, e.g. MySQL 5.7 vs 8.0.

.github/workflows/unit_race_evalengine.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ jobs:
121121
export VTDATAROOT="/tmp/"
122122
123123
export NOVTADMINBUILD=1
124-
export VT_GO_PARALLEL_VALUE=$(nproc)
125124
export VTEVALENGINETEST="1"
126125
# We sometimes need to alter the behavior based on the platform we're
127126
# testing, e.g. MySQL 5.7 vs 8.0.

test/templates/unit_test.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ jobs:
134134
export VTDATAROOT="/tmp/"
135135

136136
export NOVTADMINBUILD=1
137-
export VT_GO_PARALLEL_VALUE=$(nproc)
138-
export VTEVALENGINETEST="{{.Evalengine}}"
137+
{{if not .Race}}export VT_GO_PARALLEL_VALUE=$(nproc)
138+
{{end}}export VTEVALENGINETEST="{{.Evalengine}}"
139139
# We sometimes need to alter the behavior based on the platform we're
140140
# testing, e.g. MySQL 5.7 vs 8.0.
141141
export CI_DB_PLATFORM="{{.Platform}}"

0 commit comments

Comments
 (0)