summaryrefslogtreecommitdiff
path: root/.github/workflows/containers
diff options
context:
space:
mode:
authorBaranov Victor <bar.victor.2002@gmail.com>2025-09-28 09:08:09 +0300
committerGitHub <noreply@github.com>2025-09-28 09:08:09 +0300
commit5a13c857f9aaa262e846444e0d3db4ee60854f7d (patch)
tree6e3934b2a504dea3df03cae74806bb52c1fb3bc3 /.github/workflows/containers
parent8ce3b8b518badcf5c6df8e0723fb93fa57cb2456 (diff)
[GitHub][docker] Add python3 venv package to CI container (#161024)
I'm trying to make `pr-code-format.yml` job run natively on `ci-ubuntu-24.04` container. As it appears, `ci-ubuntu-24.04` already [has](https://github.com/llvm/llvm-project/blob/41a2dfc0d77d9ad977d1d36358f979abb3a0928f/.github/workflows/containers/github-action-ci/Dockerfile#L35) latest `clang-format`, `python3.12` installed, but `python3.12` needs `venv` to work properly, and Ubuntu asks for `python3-venv` package to be installed to create a venv.
Diffstat (limited to '.github/workflows/containers')
-rw-r--r--.github/workflows/containers/github-action-ci/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile
index 1d3f5f9c35d7..dc0c9cabc7f0 100644
--- a/.github/workflows/containers/github-action-ci/Dockerfile
+++ b/.github/workflows/containers/github-action-ci/Dockerfile
@@ -62,6 +62,7 @@ RUN apt-get update && \
# Having a symlink from python to python3 enables code sharing between
# the Linux and Windows pipelines.
python3-pip \
+ python3-venv \
file \
tzdata \
python-is-python3 && \