From 1aeb33fbf4da13e61aa4ea83ac46d6a15e96307f Mon Sep 17 00:00:00 2001 From: spinline Date: Fri, 6 Feb 2026 17:59:17 +0300 Subject: [PATCH] ci: use shell commands instead of GitHub Actions for host runner --- .gitea/workflows/build-mips.yml | 29 ++++++----------------------- 1 file changed, 6 insertions(+), 23 deletions(-) diff --git a/.gitea/workflows/build-mips.yml b/.gitea/workflows/build-mips.yml index d686bb1..c538718 100644 --- a/.gitea/workflows/build-mips.yml +++ b/.gitea/workflows/build-mips.yml @@ -14,29 +14,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Install Rust - uses: dtolnay/rust-toolchain@nightly - with: - targets: wasm32-unknown-unknown - components: rust-src - - - name: Rust Cache - uses: actions/cache@v4 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-cargo-mips-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-mips- + - name: Setup Rust + run: | + rustup toolchain install nightly --profile minimal + rustup target add wasm32-unknown-unknown --toolchain nightly + rustup component add rust-src --toolchain nightly + rustc +nightly --version - name: Install Trunk run: |