-
Notifications
You must be signed in to change notification settings - Fork 1
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
[Python] Add python 3.11, 3.12, 3.13 images #22
Conversation
python/python.sh
Outdated
@@ -42,7 +42,7 @@ install_python() { | |||
cd /tmp/${PY_INSTALLER_DIR} | |||
mkdir -p /${PY_HOME}/lib | |||
./configure --prefix=${PY_HOME} --enable-shared LDFLAGS="-Wl,-rpath ${PY_HOME}/lib" | |||
make -j "$(nproc)" | |||
make -j1 |
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.
Not sure if the reason of failure is thread-safe issue, build using single thread for now
See this run: https://github.com/openmerlin/dockerfile/actions/runs/12924519416/job/36046258369
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.
It's flaky on ubuntu-24.04
.github/workflows/_docker-build.yml
Outdated
@@ -84,7 +84,7 @@ jobs: | |||
|
|||
docker: | |||
name: 'docker' | |||
runs-on: ubuntu-latest | |||
runs-on: ubuntu-22.04 |
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.
Maybe it only fails on ubuntu-24.04, see: actions/runner-images#10636 (comment)
cc: @22dimensions