1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

Merge pull request #6274 from cre4ture/feature/android_incremental_install_for_retries

android CI: incremental install when retry
This commit is contained in:
Daniel Hofstetter 2024-04-26 16:16:59 +02:00 committed by GitHub
commit f95f363096
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -515,7 +515,10 @@ snapshot() {
echo "Installing cargo-nextest" echo "Installing cargo-nextest"
# We need to install nextest via cargo currently, since there is no pre-built binary for android x86 # We need to install nextest via cargo currently, since there is no pre-built binary for android x86
command="export CARGO_TERM_COLOR=always && cargo install cargo-nextest" # explicitly set CARGO_TARGET_DIR as otherwise a random generated tmp directory is used,
# which prevents incremental build for the retries.
command="export CARGO_TERM_COLOR=always && export CARGO_TARGET_DIR=\"cargo_install_target_dir\" && cargo install cargo-nextest"
run_with_retry 3 run_command_via_ssh "$command" run_with_retry 3 run_command_via_ssh "$command"
return_code=$? return_code=$?