-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
avoid compiler_for
for dist tools and force the current compiler
#137476
Conversation
rustbot has assigned @Mark-Simulacrum. Use |
compiler_for
for dist steps and force the current compiler
de4d282
to
4a1f7a1
Compare
makes sense that this needs to be changed and that this used to be wrong, since if you put the tools in the wrong sysroot when building, you also have to get them out of this wrong sysroot again :D |
(@rust-lang/bootstrap if someone has time to review this today that would be nice and avoid the need for a revert) |
I'll take a look. |
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.
Thanks, the changes are obviously correct w.r.t. dist tools in the dist flow.
But, from what I can tell, this may partially regress --force-use-stage={1,2}
in which case it may result in more builds than the user explicitly instructed, but fixing the dist flow is way more important.
To be safe, what I'll do is to run a try-job on a dist job and then inspect the dist toolchain via rustup-toolchain-install-master
(since we have some time before the next nightly).
@bors try (for a dist toolchain produced under the CI environment) |
avoid `compiler_for` for dist steps and force the current compiler Using `compiler_for` in dist steps was causing to install stage1 tools into the dist tarballs, which doesn't match with the stage2 compiler. Fixes rust-lang#137469
Please ping me once the try build is complete (if I don't look at that soon). |
There is one error I got on my local environment: Dist rustc-nightly-x86_64-unknown-linux-gnu
finished in 20.822 seconds
ERROR: Unable to find the stamp file /home/nimda/devspace/.other/rustc-builds/build/x86_64-unknown-linux-gnu/stage2-std/x86_64-unknown-linux-gnu/release/.libstd-stamp, did you try to keep
a nonexistent build stage? looking on the fix. |
This comment has been minimized.
This comment has been minimized.
Signed-off-by: onur-ozkan <[email protected]>
compiler_for
for dist steps and force the current compilercompiler_for
for dist tools and force the current compiler
@onur-ozkan need to
|
Signed-off-by: onur-ozkan <[email protected]>
This comment was marked as outdated.
This comment was marked as outdated.
Trying again with the current changes @bors try |
I tried |
@bors r=jieyouxu |
the job was still running, and probably just 10-20 mins from completion, you can see the latest progress here for some jobs github only displays the first couple thousand lines but does not update the live-log anymore unfortunately. The longest usually take around 3 hours - 3hours 30 mins until they are done. |
Ah, sorry about that then. Is there any way to know whether the job is actually stuck vs. just appearing stuck? It had already exceeded its usual run time by half an hour, which is unusual in any case. |
☀️ Test successful - checks-actions |
Finished benchmarking commit (f8a913b): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResults (primary 4.4%, secondary -1.9%)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 sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 770.364s -> 770.257s (-0.01%) |
It made it just in time. f8a913b is the merge commit for this PR :) |
thank you for the fix! |
To be clear, do we all understand that this PR has significantly increased CI time? For example, powerpc64le-unknown-linux-gnu is now the longest running job at over 3h. A significant difference is that it builds stage2 host (x86_64-unknown-linux-gnu) rustc (and other expensive things like wasm-component-ld). That adds about 15 minutes. That seems unnecessary, since it should be fine to use stage1 rustc to build the other two hosts. |
The previous logic was somewhat magical and unpredictable. If we want |
Is that possible after this PR? ./x dist --stage=2 --host=... --target=... does the wrong thing:
./x dist --stage=1 --host=... --target=... also does the wrong thing:
My expectations are:
From what I can tell, it seems to work correctly when not cross compiling. |
Ah, I got it wrong. Seems like we need to add some additional logic to handle cross-compilations. I will look on that during the week. |
I missed that during review. I think what's happening here is that |
I opened #138004 to track this, because I keep having trouble finding this PR discussion 😓 |
Fixing this easy but I need to make sure it doesn't regress #137469 on cross target dist tools/components. I will dive into this tomorrow. |
PR is up: #138039 |
…-tools, r=<try> handle forced compiler and revert rust-lang#137476 Fixes rust-lang#138004 I would appreciate it if we could measure CI pipelines with the current changes to see if this reduces recent CI overhead. cc `@rust-lang/infra` try-job: powerpc64le-unknown-linux-gnu
…-tools, r=<try> handle forced compiler and revert rust-lang#137476 Fixes rust-lang#138004 I would appreciate it if we could measure CI pipelines with the current changes to see if this reduces recent CI overhead. cc `@rust-lang/infra` try-job: dist-powerpc64le-linux
…-tools, r=jieyouxu handle forced compiler and revert rust-lang#137476 Fixes rust-lang#138004 I would appreciate it if we could measure CI pipelines with the current changes to see if this reduces recent CI overhead. cc `@rust-lang/infra` try-job: dist-powerpc64le-linux
…-tools, r=jieyouxu handle forced compiler and revert rust-lang#137476 Fixes rust-lang#138004 I would appreciate it if we could measure CI pipelines with the current changes to see if this reduces recent CI overhead. cc `@rust-lang/infra` try-job: dist-powerpc64le-linux
Using
compiler_for
in dist steps was causing to install stage1 tools into the dist tarballs, which doesn't match with the stage2 compiler.Fixes #137469