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 a6ef806Copy full SHA for a6ef806
.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
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
48
+ bash rustup_install.sh -y
49
+ rustup default stable
50
+ rustup target add thumbv6m-none-eabi thumbv7em-none-eabihf thumbv7em-none-eabi thumbv7m-none-eabi
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