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