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 64ad0bb commit f1f458fCopy full SHA for f1f458f
.github/workflows/build.yml
@@ -40,6 +40,15 @@ jobs:
40
git clone https://github.com/arduino/ArduinoCore-API.git $MODULE_PATH/../ArduinoCore-API
41
cp -rfp $MODULE_PATH/../ArduinoCore-API/api $MODULE_PATH/cores/arduino/
42
43
+ - name: Setup Rust toolchain
44
+ run: |
45
+ wget https://sh.rustup.rs
46
+ mv index.html rustup_install.sh
47
+ bash rustup_install.sh -y
48
+ /root/.cargo/bin/rustup default stable
49
+ /root/.cargo/bin/rustup target add thumbv6m-none-eabi thumbv7em-none-eabihf thumbv7em-none-eabi thumbv7m-none-eabi
50
+ echo "/root/.cargo/bin" >> $GITHUB_PATH
51
+
52
- name: Build fade
53
run: |
54
west build -p -b arduino_nano_33_ble/nrf52840/sense $MODULE_PATH/samples/fade
0 commit comments