Skip to content

Commit 04076c5

Browse files
committed
fix(ci): add zstd to CI environment for rootfs compression
- Install zstd inline in build-rootfs workflow step (immediate fix) - Add zstd to CI Dockerfile for future image builds
1 parent 18a5c58 commit 04076c5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/release-vm-dev.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@ jobs:
155155
- name: Install tools
156156
run: mise install
157157

158+
- name: Install zstd
159+
run: apt-get update && apt-get install -y --no-install-recommends zstd && rm -rf /var/lib/apt/lists/*
160+
158161
- name: Build base rootfs tarball
159162
run: |
160163
set -euo pipefail

deploy/docker/Dockerfile.ci

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
3434
xz-utils \
3535
jq \
3636
rsync \
37+
zstd \
3738
&& apt-get install -y --only-upgrade gpgv python3 \
3839
&& rm -rf /var/lib/apt/lists/*
3940

0 commit comments

Comments
 (0)