Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci: Remove unused dependency installs
`linux-headers-generic` isn't needed, sparc no longer needs the
dependencies to prepare for using qemu-system, and g++ isn't needed for
platforms that have a C-only libc.
  • Loading branch information
tgross35 committed Oct 29, 2025
commit f80e1df60d4c8b0f717fdc9b68802a48c13205ef
1 change: 0 additions & 1 deletion ci/docker/loongarch64-unknown-linux-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc-14-loongarch64-linux-gnu \
libc6-dev \
libc6-dev-loong64-cross \
linux-headers-generic \
qemu-user

ENV CARGO_TARGET_LOONGARCH64_UNKNOWN_LINUX_GNU_LINKER=loongarch64-linux-gnu-gcc-14 \
Expand Down
1 change: 0 additions & 1 deletion ci/docker/riscv64gc-unknown-linux-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc-riscv64-linux-gnu \
libc6-dev \
libc6-dev-riscv64-cross \
linux-headers-generic \
qemu-system-riscv64 \
qemu-user

Expand Down
9 changes: 1 addition & 8 deletions ci/docker/sparc64-unknown-linux-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,12 @@ FROM ubuntu:25.04

RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
cpio \
curl \
gcc \
gcc-sparc64-linux-gnu \
ipxe-qemu \
libc6-dev \
libc6-dev-sparc64-cross \
linux-libc-dev-sparc64-cross \
openbios-sparc \
p7zip-full \
qemu-system-sparc64 \
qemu-user \
seabios
qemu-user

ENV CARGO_TARGET_SPARC64_UNKNOWN_LINUX_GNU_LINKER=sparc64-linux-gnu-gcc \
CARGO_TARGET_SPARC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-sparc64 -L /usr/sparc64-linux-gnu" \
Expand Down
4 changes: 1 addition & 3 deletions ci/docker/x86_64-unknown-linux-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ FROM ubuntu:25.04

RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
g++ \
gcc \
libc6-dev \
linux-headers-generic
libc6-dev

RUN apt search linux-headers
RUN ls /usr/src
Expand Down
Loading