From 6c5c4cb67157bb84b3e56ed4065dc9027403eca5 Mon Sep 17 00:00:00 2001 From: Siavash Sameni Date: Sun, 5 Apr 2026 15:16:39 +0400 Subject: [PATCH] fix: add libssl-dev for openssl-sys build in CI Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 231012f..8a4b746 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -32,7 +32,7 @@ jobs: - name: Install Rust and dependencies run: | - apt-get install -y cmake pkg-config libasound2-dev build-essential + apt-get install -y cmake pkg-config libasound2-dev libssl-dev build-essential curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable echo "$HOME/.cargo/bin" >> $GITHUB_PATH @@ -88,7 +88,7 @@ jobs: run: | dpkg --add-architecture arm64 apt-get update - apt-get install -y cmake pkg-config gcc-aarch64-linux-gnu libc6-dev-arm64-cross build-essential + apt-get install -y cmake pkg-config gcc-aarch64-linux-gnu libc6-dev-arm64-cross libssl-dev build-essential curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable export PATH="$HOME/.cargo/bin:$PATH" rustup target add aarch64-unknown-linux-gnu @@ -137,7 +137,7 @@ jobs: run: | dpkg --add-architecture armhf apt-get update - apt-get install -y cmake pkg-config gcc-arm-linux-gnueabihf libc6-dev-armhf-cross build-essential + apt-get install -y cmake pkg-config gcc-arm-linux-gnueabihf libc6-dev-armhf-cross libssl-dev build-essential curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable export PATH="$HOME/.cargo/bin:$PATH" rustup target add armv7-unknown-linux-gnueabihf