Skip to content

Commit 9dc7015

Browse files
committed
try again 5
1 parent 3834d16 commit 9dc7015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-integrations.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
NUM_RUNNERS=$NUM_DIRS
168168
fi
169169
# fix issue where test splitting calculation generates 1 more split than TOTAL_RUNNERS.
170-
NUM_RUNNERS=$(($NUM_RUNNERS))-1
170+
NUM_RUNNERS=$(($NUM_RUNNERS-1))
171171
echo "NUM_RUNNERS: $NUM_RUNNERS"
172172
{
173173
echo -n "envoy-matrix="
@@ -284,7 +284,7 @@ jobs:
284284
NUM_RUNNERS=$NUM_DIRS
285285
fi
286286
# fix issue where test splitting calculation generates 1 more split than TOTAL_RUNNERS.
287-
NUM_RUNNERS=$(($NUM_RUNNERS))-1
287+
NUM_RUNNERS=$(($NUM_RUNNERS-1))
288288
echo "NUM_RUNNERS: $NUM_RUNNERS"
289289
{
290290
echo -n "compatibility-matrix="
@@ -392,7 +392,7 @@ jobs:
392392
NUM_RUNNERS=$NUM_DIRS
393393
fi
394394
# fix issue where test splitting calculation generates 1 more split than TOTAL_RUNNERS.
395-
NUM_RUNNERS=$(($NUM_RUNNERS))-1
395+
NUM_RUNNERS=$(($NUM_RUNNERS-1))
396396
echo "NUM_RUNNERS: $NUM_RUNNERS"
397397
{
398398
echo -n "upgrade-matrix="

0 commit comments

Comments
 (0)