We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c246de commit 452de0cCopy full SHA for 452de0c
.github/workflows/build.yml
@@ -37,12 +37,20 @@ jobs:
37
toolchains: arm-zephyr-eabi
38
# TODO: Also bring in riscv.
39
40
+ - name: Install Rust Targets
41
+ shell: bash
42
+ run: |
43
+ rustup target add riscv32i-unknown-none-elf
44
+ rustup target add riscv64imac-unknown-none-elf
45
+ rustup target add thumbv6m-none-eabi
46
+ rustup target add thumbv7em-none-eabi
47
+ rustup target add thumbv7m-none-eabi
48
+ rustup target add thumbv8m.main-none-eabi
49
+
50
- name: Build firmware
51
working-directory: zephyr-rust-lang
52
shell: bash
53
run: |
- set -x
- pwd
- echo $ZEPHYR_BASE
- df -h
54
cargo --version
55
56
+ west twister -T samples -v --inline-logs --integration
0 commit comments