ci: use python 3.12 venv for test-kernels install step#913
Draft
mgehre-amd wants to merge 2 commits intogfx11from
Draft
ci: use python 3.12 venv for test-kernels install step#913mgehre-amd wants to merge 2 commits intogfx11from
mgehre-amd wants to merge 2 commits intogfx11from
Conversation
1eccb1b to
0029352
Compare
|
The last push was a rebase. |
|
After the rebase, it looks like this change is an improvement, but now there seems to be a problem accessing the GPU. This is the focal point in the log: |
0029352 to
f9e5787
Compare
roberteg16
reviewed
May 4, 2026
f9e5787 to
37adf78
Compare
roberteg16
approved these changes
May 4, 2026
72efe1c to
0c91f4d
Compare
The self-hosted runner's container startup command runs `ln -sf /usr/bin/python3 /usr/local/bin/python`, repointing the image's python3.12 symlink at Debian's PEP-668 externally-managed python3.11. This breaks /usr/local/bin/rocm-smi (shebang #!/usr/local/bin/python -> ModuleNotFoundError: rocm_sdk_core) and any later `python ...` call in the workflow. Restore the symlink to python3.12 as the very first step so subsequent steps see the image's intended interpreter. Signed-off-by: Matthias Gehre <matthias.gehre@amd.com>
0dc29e2 to
e24fb5f
Compare
Author
|
The runner configuration was updated, so we don't need this PR anymore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Runners started to inject "ln -sf /usr/bin/python3 /usr/local/bin/python" into the docker container. Reverse this to keep our CI running.