Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
851129f
report never type lints in deps
WaffleLapkin Jun 2, 2025
badabab
Only borrow EncodedMetadata in codegen_crate
bjorn3 May 30, 2025
0bd7aa1
Move metadata object generation for dylibs to the linker code
bjorn3 May 30, 2025
eb472e7
Apply ABI attributes on return types in `rustc_codegen_cranelift`
beetrees Jun 11, 2025
6e4e5f5
Add some missing mailmap entries
tgross35 Jun 13, 2025
d75b0ae
Add AST pretty-printer tests involving attr precedence
dtolnay Jun 13, 2025
2171f89
Reduce precedence of expressions that have an outer attr
dtolnay Jun 13, 2025
c49ec83
Add `f16` inline asm support for LoongArch
heiher Jun 12, 2025
d6a9081
Async drop - fix for StorageLive/StorageDead codegen for pinned async…
azhogin Jun 8, 2025
3e944fa
Remove all support for wasm's legacy ABI
bjorn3 Dec 6, 2024
4d536bd
Remove outdated docs about broken ABI
bjorn3 Dec 16, 2024
e11e640
replace all instances of check_run in config with execution context
Shourya742 Jun 14, 2025
c67f7ae
replace all instances of check_run in download with execution context
Shourya742 Jun 14, 2025
b5db059
remove check_run method from config
Shourya742 Jun 14, 2025
c9eeeb4
remove check_run function from helpers
Shourya742 Jun 14, 2025
6ff3713
Suggest adding semicolon in user code rather than macro impl details
Urgau Jun 15, 2025
d6dc965
Rollup merge of #133952 - bjorn3:remove_wasm_legacy_abi, r=alexcrichton
fmease Jun 15, 2025
b79d3b1
Rollup merge of #134661 - dtolnay:prefixattr, r=fmease
fmease Jun 15, 2025
0b249d3
Rollup merge of #141769 - bjorn3:codegen_metadata_module_rework, r=wo…
fmease Jun 15, 2025
8b35ae3
Rollup merge of #141937 - WaffleLapkin:never-report-in-deps, r=oli-ob…
fmease Jun 15, 2025
e06196d
Rollup merge of #142347 - azhogin:azhogin/async-drop-storage-live-dea…
fmease Jun 15, 2025
1615266
Rollup merge of #142389 - beetrees:cranelift-arg-ext, r=bjorn3
fmease Jun 15, 2025
1c99762
Rollup merge of #142470 - tgross35:mailmap, r=Mark-Simulacrum
fmease Jun 15, 2025
5cce691
Rollup merge of #142481 - heiher:loong-asm-f16, r=Amanieu
fmease Jun 15, 2025
b83fb80
Rollup merge of #142499 - Shourya742:2025-06-14-remove-check-run-boot…
fmease Jun 15, 2025
0704864
Rollup merge of #142543 - Urgau:span-borrowck-semicolon, r=fmease
fmease Jun 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
replace all instances of check_run in download with execution context
  • Loading branch information
Shourya742 committed Jun 14, 2025
commit c67f7ae27f4fdd364ec92c71b084cfea5cee1245
4 changes: 2 additions & 2 deletions src/bootstrap/src/core/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ impl Config {
// 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").allow_failure();
curl.args([
// follow redirect
"--location",
Expand Down Expand Up @@ -255,7 +255,7 @@ impl Config {
curl.arg("--retry-all-errors");
}
curl.arg(url);
if !self.check_run(&mut curl) {
if !curl.run(&self) {
if self.host_target.contains("windows-msvc") {
eprintln!("Fallback to PowerShell");
for _ in 0..3 {
Expand Down