From eb91685aa9aa144a2f1573991e65aa4017435c11 Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 13 Apr 2026 01:13:31 +0000 Subject: [PATCH] Fix build-rpm: add missing dependencies (gcc, build-essential, systemd-rpm-macros, rpm-common) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4fe4bd..3118cb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,7 +122,7 @@ jobs: - name: Install RPM build tools run: | apt-get update - apt-get install -y rpm cargo rustc libsystemd-dev pkg-config + apt-get install -y rpm rpm-common gcc build-essential systemd-rpm-macros cargo rustc libsystemd-dev pkg-config - name: Build release binary run: cargo build --release - name: Build RPM package