Skip to content

Commit

Permalink
Parallelize kubetest2 installation in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Connor Catlett <[email protected]>
  • Loading branch information
ConnorJC3 committed Apr 30, 2024
1 parent 546cae0 commit e070430
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hack/prow-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ make cluster/create &
PIDS[1]=$!
make cluster/image &
PIDS[2]=$!
# Installing kubetest2 takes surprisingly long and blocks make e2e/${TEST}
# Thus, to speed up CI, preinstall it while creating the cluster/image
make bin/kubetest2 &
PIDS[3]=$!

for PID in "${PIDS[@]}"; do
wait $PID || E2E_PASSED=1
Expand Down

0 comments on commit e070430

Please sign in to comment.