-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Is PROFILE_TASK actually used in the Dockerfile? #979
Comments
Doh, yeah that is causing it to skip the optimizations 😢. Now that none of the python versions need |
Wouldn't the |
(but either way, passing in |
Yeah, but we're setting for the python/3.13/bookworm/Dockerfile Lines 53 to 56 in 7666104
|
Oh, glad I am not crazy, I can open a PR for this. |
That'd be great. Thank you! |
When this is set, the `--enable-optimizations` option becomes ineffective, as the profile task step is bypassed. closes docker-library#979
When this is set, the `--enable-optimizations` option becomes ineffective, as the profile task step is bypassed. For 3.13, have to edit the Makefile to revert the original behavior because xml tests fail on older distros because of expat issues. closes docker-library#979
When this is set, the `--enable-optimizations` option becomes ineffective, as the profile task step is bypassed. For 3.13, have to edit the Makefile to revert the original behavior because xml tests fail on older distros because of expat issues. closes docker-library#979
I see that in the history of the linux template, that PROFILE_TASK was specifically set to a value and used across both invocation of
make
. However, I downloaded the 3.12.7 and 3.13.0 Dockerfiles to understand what it going on, and I enabled Docker's full logging and noticed that the profiling step does not get invoked.It appears that this variable is now
""
and then the Makefile just skips the step, thus essentially disabling the--enabled-optimization
flag.If someone could just confirm my findings and ensure I am not missing something, that would be awesome.
Thanks!
The text was updated successfully, but these errors were encountered: