ci:fail when docker start error

This commit is contained in:
luoliwoshang
2025-09-08 19:07:12 +08:00
parent bb89ef5c5d
commit 13b5f39125

View File

@@ -139,7 +139,10 @@ populate_linux_sysroot() {
/populate_linux_sysroot.sh
}
populate_linux_sysroot amd64 "${LINUX_AMD64_PREFIX}" &
PID1=$!
populate_linux_sysroot arm64 "${LINUX_ARM64_PREFIX}" &
PID2=$!
# Wait for both background processes to complete
wait
wait $PID1 || exit $?
wait $PID2 || exit $?