From 7cd1d08503cc21defd6934772acc05a2880ae7c2 Mon Sep 17 00:00:00 2001 From: ANAS Date: Sun, 7 Jun 2026 02:06:29 +0100 Subject: [PATCH] ci: install Linux dependencies on ubuntu-latest for Tauri workspace package --- .github/workflows/ci.yml | 6 ++++++ Cargo.lock | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b07b626..c890c71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,12 @@ jobs: - name: Rust Cache uses: Swatinem/rust-cache@v2 + - name: Install Linux Dependencies + if: matrix.os == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libssl-dev libgtk-3-dev + - name: Check formatting run: cargo fmt --all -- --check diff --git a/Cargo.lock b/Cargo.lock index 43b8b1c..b4ff0ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3521,7 +3521,7 @@ dependencies = [ [[package]] name = "routecode-cli" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anyhow", "async-trait", @@ -3543,7 +3543,7 @@ dependencies = [ [[package]] name = "routecode-sdk" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anyhow", "async-stream",