Rollup merge of #129594 - lolbinarycat:explain-curl-options, r=albertlarsan68
explain the options bootstrap passes to curl also fixes a discrepancy where the rust side doesn't use -L docs are only on the rust side, since duplicated prose has a tendancy to get out-of-sync, and also because there are talks of removing the python script all together eventually.
This commit is contained in:
commit
6e6171b074
@ -106,22 +106,29 @@ def _download(path, url, probably_big, verbose, exception):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
if (probably_big or verbose) and "GITHUB_ACTIONS" not in os.environ:
|
if (probably_big or verbose) and "GITHUB_ACTIONS" not in os.environ:
|
||||||
option = "-#"
|
option = "--progress-bar"
|
||||||
else:
|
else:
|
||||||
option = "-s"
|
option = "--silent"
|
||||||
# If curl is not present on Win32, we should not sys.exit
|
# If curl is not present on Win32, we should not sys.exit
|
||||||
# but raise `CalledProcessError` or `OSError` instead
|
# but raise `CalledProcessError` or `OSError` instead
|
||||||
require(["curl", "--version"], exception=platform_is_win32())
|
require(["curl", "--version"], exception=platform_is_win32())
|
||||||
extra_flags = []
|
extra_flags = []
|
||||||
if curl_version() > (7, 70):
|
if curl_version() > (7, 70):
|
||||||
extra_flags = [ "--retry-all-errors" ]
|
extra_flags = [ "--retry-all-errors" ]
|
||||||
|
# options should be kept in sync with
|
||||||
|
# src/bootstrap/src/core/download.rs
|
||||||
|
# for consistency.
|
||||||
|
# they are also more compreprensivly explained in that file.
|
||||||
run(["curl", option] + extra_flags + [
|
run(["curl", option] + extra_flags + [
|
||||||
"-L", # Follow redirect.
|
# Follow redirect.
|
||||||
"-y", "30", "-Y", "10", # timeout if speed is < 10 bytes/sec for > 30 seconds
|
"--location",
|
||||||
"--connect-timeout", "30", # timeout if cannot connect within 30 seconds
|
# timeout if speed is < 10 bytes/sec for > 30 seconds
|
||||||
"-o", path,
|
"--speed-time", "30", "--speed-limit", "10",
|
||||||
|
# timeout if cannot connect within 30 seconds
|
||||||
|
"--connect-timeout", "30",
|
||||||
|
"--output", path,
|
||||||
"--continue-at", "-",
|
"--continue-at", "-",
|
||||||
"--retry", "3", "-SRf", url],
|
"--retry", "3", "--show-error", "--remote-time", "--fail", url],
|
||||||
verbose=verbose,
|
verbose=verbose,
|
||||||
exception=True, # Will raise RuntimeError on failure
|
exception=True, # Will raise RuntimeError on failure
|
||||||
)
|
)
|
||||||
|
@ -228,25 +228,42 @@ fn download_file(&self, url: &str, dest_path: &Path, help_on_error: &str) {
|
|||||||
fn download_http_with_retries(&self, tempfile: &Path, url: &str, help_on_error: &str) {
|
fn download_http_with_retries(&self, tempfile: &Path, url: &str, help_on_error: &str) {
|
||||||
println!("downloading {url}");
|
println!("downloading {url}");
|
||||||
// Try curl. If that fails and we are on windows, fallback to PowerShell.
|
// Try curl. If that fails and we are on windows, fallback to PowerShell.
|
||||||
|
// options should be kept in sync with
|
||||||
|
// src/bootstrap/src/core/download.rs
|
||||||
|
// for consistency
|
||||||
let mut curl = command("curl");
|
let mut curl = command("curl");
|
||||||
curl.args([
|
curl.args([
|
||||||
"-y",
|
// follow redirect
|
||||||
|
"--location",
|
||||||
|
// timeout if speed is < 10 bytes/sec for > 30 seconds
|
||||||
|
"--speed-time",
|
||||||
"30",
|
"30",
|
||||||
"-Y",
|
"--speed-limit",
|
||||||
"10", // timeout if speed is < 10 bytes/sec for > 30 seconds
|
"10",
|
||||||
|
// timeout if cannot connect within 30 seconds
|
||||||
"--connect-timeout",
|
"--connect-timeout",
|
||||||
"30", // timeout if cannot connect within 30 seconds
|
"30",
|
||||||
"-o",
|
// output file
|
||||||
|
"--output",
|
||||||
tempfile.to_str().unwrap(),
|
tempfile.to_str().unwrap(),
|
||||||
|
// if there is an error, don't restart the download,
|
||||||
|
// instead continue where it left off.
|
||||||
"--continue-at",
|
"--continue-at",
|
||||||
"-",
|
"-",
|
||||||
|
// retry up to 3 times. note that this means a maximum of 4
|
||||||
|
// attempts will be made, since the first attempt isn't a *re*try.
|
||||||
"--retry",
|
"--retry",
|
||||||
"3",
|
"3",
|
||||||
"-SRf",
|
// show errors, even if --silent is specified
|
||||||
|
"--show-error",
|
||||||
|
// set timestamp of downloaded file to that of the server
|
||||||
|
"--remote-time",
|
||||||
|
// fail on non-ok http status
|
||||||
|
"--fail",
|
||||||
]);
|
]);
|
||||||
// Don't print progress in CI; the \r wrapping looks bad and downloads don't take long enough for progress to be useful.
|
// Don't print progress in CI; the \r wrapping looks bad and downloads don't take long enough for progress to be useful.
|
||||||
if CiEnv::is_ci() {
|
if CiEnv::is_ci() {
|
||||||
curl.arg("-s");
|
curl.arg("--silent");
|
||||||
} else {
|
} else {
|
||||||
curl.arg("--progress-bar");
|
curl.arg("--progress-bar");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user