aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authordatdenkikniet <jcdra1@gmail.com>2025-03-22 22:47:46 +0100
committerdatdenkikniet <38322042+datdenkikniet@users.noreply.github.com>2025-03-23 09:57:48 +0000
commit6d2150b61c5e6b1888fbc581bf6158348b74e631 (patch)
treead160789f6dc73569e7bac9f94099a96b817633d /.github/workflows
parent5aa479b23eba7a21b5f65d928ead9383579cc0b9 (diff)
ci: riscv check examples does not need nightly toolchain
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml7
1 files changed, 0 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3187ea1..2a1aa2a 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 }}