-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Run 32bit test suite on PR CI? #69823
Comments
Nominating for discussion at the infrastructure team meeting. |
I would be interested in seeing error rates, at least; I have not experienced a lot of pain with 32 bit tests failing (and 64 bit tests passing). OTOH, maybe the Do we have numbers on how long we expect this to take on CI? I would expect someone to run the UI tests that we already run on CI locally and then figure out an approximate "CI slowdown" based on how long those take, to determine how long we'd expect this test to take. |
We discussed this in the infra team meeting, and we'd like to see numbers on the impact this would have in our CI times before making a decision. |
To be more explicit - it's not likely that the infra team will have a chance to proactively look into this. As stated above, we would be looking for help on understanding:
|
Discussed this again in the infrastructure team meeting: we're still waiting for the data before making a decision, and unfortunately nobody in the team has a chance to gather it. |
I am also not sure when I will have the time to do such experiments. |
Can I take this to mean you plan to look into this? :) |
Yes, I've been running out of time these past couple days but hopefully will get to it soon. |
…lbini Test UI tests for pass=check I'm going to just compare the builder times since I wasn't able to get this working nicely locally (hit some obscure linker error). Fixes part of rust-lang#69823
As of #72053, we are running UI tests in check mode on the PR CI builder. We are not yet running them in 32 bit mode, though, because LLVM 8 is broken on cross-compilation (IIRC, don't remember details though). |
Remove Hacks and Fixmes from PR CI's LLVM-9 Container Now with LLVM 9 being the minimum supported version (thanks to rust-lang#78848 ), we can finally remove the hacks in the dockerfile. This wasn't in the main PR bumping the version as I didn't quite understand what's going on and needed here. Relevant issues and PRs: - Issue rust-lang#69823 - PR rust-lang#70989 I hope I actually adressed things correctly here?
@rust-lang/infra do we have enough spare capacity on the PR CI runner to add something like
./x.py test src/test/ui --target i686-unknown-linux-gnu --pass check
? That would help find 32bit-only issues in tests before things get to bors. And running with--pass check
would also ensure that the test suite actually passes in check-only mode, which is not a given (some tests fail and needignore-pass
).The text was updated successfully, but these errors were encountered: