From 6bee508bf377fd97ed0593648e5c82a14eeb4f90 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sat, 24 Aug 2024 01:23:44 +0200 Subject: [PATCH] ci: add libssl dep --- .gitea/workflows/cargo.yaml | 4 ++++ .github/workflows/cargo.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.gitea/workflows/cargo.yaml b/.gitea/workflows/cargo.yaml index 6b9afbb..9b1c670 100644 --- a/.gitea/workflows/cargo.yaml +++ b/.gitea/workflows/cargo.yaml @@ -21,6 +21,10 @@ jobs: run: | rustup component add rustfmt rustup component add clippy + - name: install additional dependencies + run: | + apt update -y + apt install libssl -y - name: config custom registry run: | mkdir -p ~/.cargo/ diff --git a/.github/workflows/cargo.yaml b/.github/workflows/cargo.yaml index d2c9936..1c3455a 100644 --- a/.github/workflows/cargo.yaml +++ b/.github/workflows/cargo.yaml @@ -22,6 +22,10 @@ jobs: run: | rustup component add rustfmt rustup component add clippy + - name: install additional dependencies + run: | + apt update -y + apt install libssl -y - name: config custom registry run: | mkdir -p ~/.cargo/