-
Notifications
You must be signed in to change notification settings - Fork 13.4k
update llvm-tools logic for dist
and install
steps
#140932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: onur-ozkan <work@onurozkan.dev>
Signed-off-by: onur-ozkan <work@onurozkan.dev>
if let Some(config) = builder.config.target_config.get(&target) { | ||
if let Some(ref _s) = config.llvm_config { | ||
if !builder.config.llvm_from_ci && config.llvm_config.is_some() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Running any dist
command when CI LLVM is enabled should IMO be a hard error. But that's a separate topic.
@bors r+ |
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 28174fc (parent) -> 6cab15c (this PR) Test differencesShow 33254 test diffsStage 1
Stage 2
(and 16556 additional test diffs) Additionally, 16598 doctest diffs were found. These are ignored, as they are noisy. Job group index Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 6cab15c1aef39456d86ce51be6096088cb2ef1da --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (6cab15c): comparison URL. Overall result: ❌ regressions - please read the text belowOur benchmarks found a performance regression caused by this PR. Next Steps:
@rustbot label: +perf-regression Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary -3.7%, secondary -1.7%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (primary 2.8%, secondary 0.5%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeResults (primary 1.1%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Bootstrap: 775.471s -> 775.908s (0.06%) |
Noise. @rustbot label: +perf-regression-triaged |
First commit aligns
build_steps::compile
andbuild_steps::dist
logics for copying llvm-tools, and the second commit adds the correctshould_run
condition forLlvmTools
step as the previous one was clearly incorrect.Fixes #140913