[GitHub][docker] Add python3 venv package to CI container #161024
+1
−0
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.
I'm trying to make
pr-code-format.yml
job run natively onci-ubuntu-24.04
container.As it appears,
ci-ubuntu-24.04
already has latestclang-format
,python3.12
installed, butpython3.12
needsvenv
to work properly, and Ubuntu asks forpython3-venv
package to be installed to create a venv.FYI I hacked it with
--break-system-packages
to test and clang-format job runs a lot faster https://github.com/llvm/llvm-project/actions/runs/18064896361/job/51406365488#logs (skipping 1min longclang-format
installation). Just don't look at "Initialize containers" taking 6min, it usually takes 15-20sec