From d33f57621274eebd80ae3a8278c60c639565b75f Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Mon, 6 Jul 2026 07:33:16 +0200 Subject: [PATCH] ci(app): install Rust toolchain on Ubuntu 22.04 builds The workflow now sets up a Rust toolchain only for the Ubuntu 22.04 runner. This ensures Rust-based components can compile reliably without affecting other platforms. - Add conditional Rust toolchain install for ubuntu-22.04 --- .gitea/workflows/app_builder.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/app_builder.yaml b/.gitea/workflows/app_builder.yaml index 9309099..55cb646 100644 --- a/.gitea/workflows/app_builder.yaml +++ b/.gitea/workflows/app_builder.yaml @@ -67,6 +67,10 @@ jobs: with: node-version: lts/* + - name: install rust toolchain + if: matrix.platform == 'ubuntu-22.04' + uses: dtolnay/rust-toolchain@stable + - name: install frontend dependencies run: npm ci