From 8816f13df838acb5cae90d2d0501932e4c337b8f Mon Sep 17 00:00:00 2001 From: Siavash Sameni Date: Sun, 5 Apr 2026 15:05:56 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20use=20stable=20Rust=20toolchain=20?= =?UTF-8?q?=E2=80=94=20time=20crate=20requires=20rustc=20>=3D=201.88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1061ecd..231012f 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Install Rust and dependencies run: | apt-get install -y cmake pkg-config libasound2-dev build-essential - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.85.0 + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable echo "$HOME/.cargo/bin" >> $GITHUB_PATH - name: Build headless binaries @@ -89,7 +89,7 @@ jobs: dpkg --add-architecture arm64 apt-get update apt-get install -y cmake pkg-config gcc-aarch64-linux-gnu libc6-dev-arm64-cross build-essential - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.85.0 + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable export PATH="$HOME/.cargo/bin:$PATH" rustup target add aarch64-unknown-linux-gnu echo "$HOME/.cargo/bin" >> $GITHUB_PATH @@ -138,7 +138,7 @@ jobs: dpkg --add-architecture armhf apt-get update apt-get install -y cmake pkg-config gcc-arm-linux-gnueabihf libc6-dev-armhf-cross build-essential - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.85.0 + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable export PATH="$HOME/.cargo/bin:$PATH" rustup target add armv7-unknown-linux-gnueabihf echo "$HOME/.cargo/bin" >> $GITHUB_PATH