Build no-std tests with RISC-V 32 IMAC

Turns out wasm still has std, making it suboptimal to use here.
This commit is contained in:
Luke Parker 2023-06-28 12:26:53 -04:00
parent fca567f61d
commit 385ed2e97a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions
.github
actions/build-dependencies
workflows

View file

@ -37,7 +37,7 @@ runs:
with:
toolchain: ${{ inputs.rust-toolchain }}
components: ${{ inputs.rust-components }}
targets: wasm32-unknown-unknown
targets: wasm32-unknown-unknown, riscv32imac-unknown-none-elf
- name: Cache Rust
uses: Swatinem/rust-cache@v2

View file

@ -18,4 +18,4 @@ jobs:
github-token: ${{ inputs.github-token }}
- name: Verify no-std builds
run: cd tests/no-std && cargo build --target wasm32-unknown-unknown
run: cd tests/no-std && cargo build --target riscv32imac-unknown-none-elf