-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Temporarily disable submodule archive downloads. #98423
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
r? @kennytm (rust-highfive has picked a reviewer for you, use r? to override) |
@bors r+ p=10001 |
📌 Commit 7106d1e9552558e3c8a676ff93523f9f1fa9397f has been approved by |
🌲 The tree is currently closed for pull requests below priority 1000. This pull request will be tested once the tree is reopened. |
🛑 Priority higher than 9001 is ignored. |
@bors p=1001 |
⌛ Testing commit 7106d1e9552558e3c8a676ff93523f9f1fa9397f with merge 9eb6a304247413e4e019a7c8800aa532fddacc2b... |
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
7106d1e
to
ebfde3c
Compare
@bors r+ |
📌 Commit ebfde3c has been approved by |
☀️ Test successful - checks-actions |
Finished benchmarking commit (4334739): comparison url. Instruction count
Max RSS (memory usage)Results
CyclesResults
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Next Steps: If you can justify the regressions found in this perf run, please indicate this with @rustbot label: +perf-regression Footnotes |
…iler-errors Temporarily disable submodule archive downloads. The `llvm-project` `/archive/` download has been timing out with a 504 error since yesterday. This changes it so that it uses a normal submodule clone, but also uses `--depth 1` since GitHub now supports `allowReachableSHA1InWant` which allows for fetching a specific revision. That should be reasonably fast (but not as fast as an archive download) to unstick CI.
Accepting for backport to get CI working on beta. |
[beta] Beta backports * Remove the unused-#[doc(hidden)] logic from the unused_attributes lint rust-lang#98336 * debuginfo: Fix NatVis for Rc and Arc with unsized pointees. rust-lang#98137 * Revert "remove num_cpus dependency" in rustc and update cargo rust-lang#97911 * Update LLVM submodule rust-lang#97690 * Revert rust-lang#96682. rust-lang#97636 * don't do Sized and other return type checks on RPIT's real type rust-lang#97431 * Temporarily disable submodule archive downloads. rust-lang#98423
Looks like there is some new noise in the @rustbot label: +perf-regression-triaged |
…=Mark-Simulacrum Re-enable submodule archive downloads. This is effectively a revert of rust-lang#98423 (though it keeps the `--depth 1` flag since that is still helpful). GitHub has indicated that they have been working on the original issue, and my testing shows that the llvm-project archive download now succeeds 100% of the time. This should save about a minute on every job.
The
llvm-project
/archive/
download has been timing out with a 504 error since yesterday. This changes it so that it uses a normal submodule clone, but also uses--depth 1
since GitHub now supportsallowReachableSHA1InWant
which allows for fetching a specific revision. That should be reasonably fast (but not as fast as an archive download) to unstick CI.