]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
tools: docker: Drop patman from the CI image
authorSimon Glass <sjg@chromium.org>
Sun, 5 Jul 2026 19:32:20 +0000 (13:32 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 Jul 2026 14:28:50 +0000 (08:28 -0600)
The CI runner image pre-caches pip packages by downloading each tool's
requirements.txt from master. A later patch removes patman's
requirements.txt from the tree, so stop fetching and installing it.

The same step already installs setuptools explicitly (patman's
requirements list it too), so this needs nothing further.

This takes effect the next time someone rebuilds the image; the existing
image keeps working in the meantime.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/docker/Dockerfile

index 73bf6cdd2c522cda40c7d74377efd75dac9771eb..a91a1060cc4fabde20487c21f40c475da48f9c83 100644 (file)
@@ -362,7 +362,6 @@ RUN wget -O /tmp/pytest-requirements.txt https://source.denx.de/u-boot/u-boot/-/
 RUN wget -O /tmp/sphinx-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/doc/sphinx/requirements.txt
 RUN wget -O /tmp/binman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/binman/requirements.txt
 RUN wget -O /tmp/buildman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/buildman/requirements.txt
-RUN wget -O /tmp/patman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/patman/requirements.txt
 RUN wget -O /tmp/u_boot_pylib-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/u_boot_pylib/requirements.txt
 RUN python3 -m venv /tmp/venv && \
        . /tmp/venv/bin/activate && \
@@ -370,7 +369,6 @@ RUN python3 -m venv /tmp/venv && \
                -r /tmp/sphinx-requirements.txt \
                -r /tmp/binman-requirements.txt \
                -r /tmp/buildman-requirements.txt \
-               -r /tmp/patman-requirements.txt \
                -r /tmp/u_boot_pylib-requirements.txt \
                setuptools pytest-azurepipelines && \
        deactivate && \