diff options
| author | Tom Rini <[email protected]> | 2025-04-08 13:54:50 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-08 13:54:50 -0600 |
| commit | a30b54462825843a9dcc46a17df6d57099f7b61a (patch) | |
| tree | 597b4d3d3c60a6dc05d8386e934b079e66226045 /tools/docker | |
| parent | d4c3359570a698679058fc4e7d422bfa108fcbfb (diff) | |
| parent | eb1b90ec57a43ff4799d9626a1481acd01a4adb4 (diff) | |
Merge patch series "Improve pytest runtime"
Tom Rini <[email protected]> says:
One thing that Simon Glass has noted is that our pytest run time keeps
getting longer. Looking at:
https://source.denx.de/u-boot/u-boot/-/pipelines/25011/test_report?job_name=sandbox%20test.py%3A%20%5Bfast%20amd64%5D
we can see that some of the longest running tests are a little puzzling.
It turns out that we have two ways of making filesystem images without
requiring root access and one of them is significantly slower than the
other. This series changes us from using virt-make-fs to only using the
mk_fs helper that currently resides in test_ut.py which uses standard
userspace tools. The final result can be seen at:
https://source.denx.de/u-boot/u-boot/-/pipelines/25015/test_report?job_name=sandbox%20test.py%3A%20%5Bfast%20amd64%5D
and the tests changed here now run much quicker.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'tools/docker')
| -rw-r--r-- | tools/docker/Dockerfile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 80e9247aa60..e14d1640f9c 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -92,7 +92,6 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ libconfuse-dev \ libgit2-dev \ libjson-glib-dev \ - libguestfs-tools \ libgnutls28-dev \ libgnutls30 \ liblz4-tool \ @@ -106,7 +105,6 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ libtool \ libudev-dev \ libusb-1.0-0-dev \ - linux-image-generic \ lzma-alone \ lzop \ mount \ @@ -143,9 +141,6 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ xxd \ zip -# Make kernels readable for libguestfs tools to work correctly -RUN chmod +r /boot/vmlinu* - # Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \ cd /tmp/grub && \ |
