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