From badbc63c5cb1ecd8a96e0669ee55e3dca0035b4e Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Sat, 22 Mar 2025 22:47:46 +0100 Subject: [PATCH] ci: riscv check examples does not need nightly toolchain --- .github/workflows/build.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3187ea1cacf..2a1aa2a8700 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -152,26 +152,19 @@ jobs: - backend: riscv32-imc-clint platform: hifive1 rustup-target: riscv32imc-unknown-none-elf - custom-toolchain: rustup toolchain install nightly-2023-11-14 --component rust-src --target riscv32imc-unknown-none-elf && rustup override set nightly - backend: riscv32-imc-mecall platform: hifive1 rustup-target: riscv32imc-unknown-none-elf - custom-toolchain: rustup toolchain install nightly-2023-11-14 --component rust-src --target riscv32imc-unknown-none-elf && rustup override set nightly - backend: riscv-esp32-c3 platform: esp32-c3 rustup-target: riscv32imc-unknown-none-elf - custom-toolchain: rustup toolchain install nightly-2023-11-14 --component rust-src --target riscv32imc-unknown-none-elf && rustup override set nightly steps: - name: Checkout uses: actions/checkout@v4 - - name: Install optional custom toolchain - if: matrix.input.custom-toolchain - run: ${{ matrix.input.custom-toolchain }} - - name: Configure Rust target run: rustup target add ${{ matrix.input.rustup-target }}