From 8e2ed3a3063aecb788951724c323c58a9a11e2cf Mon Sep 17 00:00:00 2001 From: 237899745 <237899745@users.noreply.git.workyai.cn> Date: Sun, 26 Jul 2026 07:15:41 +0800 Subject: [PATCH] ci: install Linux image build dependencies --- .gitea/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 58115ea..614374d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -60,9 +60,16 @@ jobs: invalid.append(str(path)) if invalid: - raise SystemExit("migrations must use CRLF: " + ", ".join(invalid)) + raise SystemExit("migrations must use CRLF: " + ", ".join(invalid)) PY + - name: Install native build dependencies + run: | + apt-get update + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ + cmake libdav1d-dev nasm pkg-config + rm -rf /var/lib/apt/lists/* + - name: Install Rust toolchain run: | set -Eeuo pipefail