SERVER-114875 Switch pre-test build to pre-test fetch (#44835)

GitOrigin-RevId: 57faeeab41477683923caabdd5771c6b6f80ef67
This commit is contained in:
Zack Winter 2025-12-04 16:33:07 -08:00 committed by MongoDB Bot
parent 5a62438d69
commit 352efcbcd5
1 changed files with 2 additions and 2 deletions

View File

@ -41,10 +41,10 @@ echo "${ALL_FLAGS}" >.bazel_build_flags
# to capture exit codes
set +o errexit
# Build then test with retries.
# Fetch then test with retries.
export RETRY_ON_FAIL=1
bazel_evergreen_shutils::retry_bazel_cmd 3 "$BAZEL_BINARY" \
build ${ALL_FLAGS} ${targets}
fetch ${ALL_FLAGS} ${targets}
RET=$?
if [[ "$RET" == "0" ]]; then