From f21b74485e7d644ff2a9eb47dc3bc4e1030b63b3 Mon Sep 17 00:00:00 2001 From: demenik Date: Sun, 21 Dec 2025 00:24:04 +0100 Subject: [PATCH] fix: Add libssl-dev to CI workflow to resolve openssl-sys build error --- .gitea/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index d02c403..726588e 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - name: Install System Dependencies run: | apt-get update -yq - apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev nodejs + apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev nodejs libssl-dev - name: Checkout uses: actions/checkout@v4 - name: Cache Cargo @@ -41,7 +41,7 @@ jobs: - name: Install System Dependencies run: | apt-get update -yq - apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev nodejs + apt-get install -yq git g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev nodejs libssl-dev - name: Checkout uses: actions/checkout@v4 - name: Cache Cargo