Skip to content
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

[do not merge] CI experiments #112049

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions src/bootstrap/src/core/build_steps/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1280,6 +1280,11 @@ pub fn rustc_cargo(
));
}

if compiler.stage != 0 {
cargo.rustflag("-Cpanic=abort");
cargo.rustflag("-Cforce-unwind-tables=yes");
}

rustc_cargo_env(builder, cargo, target, compiler.stage);
}

Expand Down
13 changes: 13 additions & 0 deletions src/bootstrap/src/core/build_steps/tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,19 @@ pub fn prepare_tool_cargo(
}
}

if compiler.stage != 0 {
if path.ends_with("rls")
|| path.ends_with("clippy")
|| path.ends_with("miri")
|| path.ends_with("rustfmt")
|| path.ends_with("rustdoc")
|| path.ends_with("rustdoc-tool")
{
cargo.rustflag("-Cpanic=abort");
cargo.rustflag("-Cforce-unwind-tables=yes");
}
}

// clippy tests need to know about the stage sysroot. Set them consistently while building to
// avoid rebuilding when running tests.
cargo.env("SYSROOT", builder.sysroot(compiler));
Expand Down
2 changes: 1 addition & 1 deletion src/ci/github-actions/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pr:
try:
- name: dist-x86_64-linux
env:
CODEGEN_BACKENDS: llvm,cranelift
CODEGEN_BACKENDS: llvm
<<: *job-linux-16c

# Main CI jobs that have to be green to merge a commit into master
Expand Down
Loading