Skip to content

Commit

Permalink
ci: Fix package parallelism assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFriel committed Sep 14, 2022
1 parent 5beffd8 commit 22f2989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/retry
Expand Up @@ -30,7 +30,7 @@ run_tests() {
attempts=$((attempts + 1))

export GO_TEST_PARALLELISM=$((GO_TEST_PARALLELISM <= 2 ? 1 : GO_TEST_PARALLELISM / 2))
export GO_TEST_PKG_PARALLELISM=$((GO_TEST_PARALLELISM <= 2 ? 1 : GO_TEST_PKG_PARALLELISM / 2))
export GO_TEST_PKG_PARALLELISM=$((GO_TEST_PKG_PARALLELISM <= 2 ? 1 : GO_TEST_PKG_PARALLELISM / 2))
export GO_TEST_SHUFFLE="off"
done

Expand Down

0 comments on commit 22f2989

Please sign in to comment.