Skip to content

Commit

Permalink
backport of commit 9dc7015
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurret committed Apr 20, 2023
1 parent 1006f53 commit 7ae41c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
NUM_RUNNERS=$NUM_DIRS
fi
# fix issue where test splitting calculation generates 1 more split than TOTAL_RUNNERS.
NUM_RUNNERS=$(($NUM_RUNNERS))-1
NUM_RUNNERS=$(($NUM_RUNNERS-1))
echo "NUM_RUNNERS: $NUM_RUNNERS"
{
echo -n "envoy-matrix="
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
NUM_RUNNERS=$NUM_DIRS
fi
# fix issue where test splitting calculation generates 1 more split than TOTAL_RUNNERS.
NUM_RUNNERS=$(($NUM_RUNNERS))-1
NUM_RUNNERS=$(($NUM_RUNNERS-1))
echo "NUM_RUNNERS: $NUM_RUNNERS"
{
echo -n "compatibility-matrix="
Expand Down Expand Up @@ -392,7 +392,7 @@ jobs:
NUM_RUNNERS=$NUM_DIRS
fi
# fix issue where test splitting calculation generates 1 more split than TOTAL_RUNNERS.
NUM_RUNNERS=$(($NUM_RUNNERS))-1
NUM_RUNNERS=$(($NUM_RUNNERS-1))
echo "NUM_RUNNERS: $NUM_RUNNERS"
{
echo -n "upgrade-matrix="
Expand Down

0 comments on commit 7ae41c5

Please sign in to comment.