Skip to content

Rollup of 7 pull requests #130027

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

Closed
wants to merge 27 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9a29081
call `Cargo::configure_linker` only for specific commands
onur-ozkan Aug 9, 2024
94fbe14
don't try to find target tools on certain commands
onur-ozkan Aug 9, 2024
2dbc976
Distribute rustc_codegen_cranelift for Windows
bjorn3 Aug 10, 2024
893413d
Add a run-make test for checking that certain `rustc_` crates build o…
Kobzol Aug 24, 2024
7957140
inhibit proc-macro2 nightly detection
lqd Aug 24, 2024
d9794a9
run test in tmp dir and emit artifacts there
lqd Aug 24, 2024
2190c28
remove use of RUSTC_BOOTSTRAP and cargo nightly features
lqd Aug 25, 2024
0577035
separate the crates to test from the test setup
lqd Aug 25, 2024
f1df0c5
remove unneeded type ascription
lqd Aug 25, 2024
bb56eeb
these tests seem to work fine on i586 these days
RalfJung Aug 31, 2024
4ee58db
Upgrade CI's mingw-w64 toolchain
mati865 Aug 25, 2024
3541000
move float ui tests to better location, enable and extend float-class…
RalfJung Aug 31, 2024
09783d0
remove outdated FIXME
RalfJung Aug 31, 2024
cc38581
add reference to floating-point semantics issue
RalfJung Sep 1, 2024
a178559
address review comments
lqd Sep 2, 2024
8f0ea94
Pin memchr to 2.5.0 in the library rather than rustc_ast
tgross35 Aug 26, 2024
9c671a1
Run `cargo update` in the root, library, and rustbook
tgross35 Aug 26, 2024
07c0585
Adjust allowed dependencies from the latest `cargo update`
tgross35 Aug 26, 2024
57edda7
use words that make sense
RalfJung Sep 5, 2024
3699e93
rustdoc-search: allow trailing `Foo ->` arg search
notriddle Sep 6, 2024
29abbda
Rollup merge of #119229 - mati865:update-mingw-toolchain, r=jieyouxu,…
GuillaumeGomez Sep 6, 2024
f1f9d43
Rollup merge of #128871 - onur-ozkan:128180, r=Kobzol
GuillaumeGomez Sep 6, 2024
78a64af
Rollup merge of #128939 - bjorn3:windows_cg_clif_component, r=albertl…
GuillaumeGomez Sep 6, 2024
530e577
Rollup merge of #129529 - lqd:stable-new-solver, r=Kobzol
GuillaumeGomez Sep 6, 2024
8adef95
Rollup merge of #129624 - tgross35:cargo-update, r=Mark-Simulacrum
GuillaumeGomez Sep 6, 2024
a38f6d8
Rollup merge of #129835 - RalfJung:float-tests, r=workingjubilee
GuillaumeGomez Sep 6, 2024
0ed26b5
Rollup merge of #130009 - notriddle:notriddle/trailing-arrow, r=lolbi…
GuillaumeGomez Sep 6, 2024
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
separate the crates to test from the test setup
it'll be easier to see and update the list: the other cmd args
can just be ignored
  • Loading branch information
lqd committed Aug 26, 2024
commit 057703593c9744619787f1fe93b01059247ebb2e
4 changes: 3 additions & 1 deletion tests/run-make/rustc-crates-on-stable/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ fn main() {
// folder
"--target-dir",
".",
// Check that these crates can be compiled on "stable"
])
// Check that these crates can be compiled on "stable"
.args(&[
"-p",
"rustc_type_ir",
"-p",
Expand Down