From e5980df24302f793fc3ff1496e754f8a6d687894 Mon Sep 17 00:00:00 2001 From: ospab Date: Thu, 14 May 2026 23:19:42 +0300 Subject: [PATCH] CI/CD: Skip host-runner rustup target addition for Cross-Docker targets to prevent Tier-3 architecture compilation crashes --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d8cdb54..2353821 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,11 +98,16 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Initialize Rust ecosystem + - name: Initialize Rust ecosystem (Native Host) + if: ${{ !matrix.use_cross }} uses: dtolnay/rust-toolchain@stable with: targets: ${{ matrix.target }} + - name: Initialize Rust ecosystem (Cross Container Host) + if: ${{ matrix.use_cross }} + uses: dtolnay/rust-toolchain@stable + - name: Activate rust compilation caching uses: swatinem/rust-cache@v2