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 0147fb9Copy full SHA for 0147fb9
.github/workflows/build.yml
@@ -40,6 +40,13 @@ 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
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup_install.sh
46
+ bash rustup_install.sh -y
47
+ rustup default stable
48
+ rustup target add thumbv6m-none-eabi thumbv7em-none-eabihf thumbv7em-none-eabi thumbv7m-none-eabi
49
+
50
- name: Build fade
51
run: |
52
west build -p -b arduino_nano_33_ble/nrf52840/sense $MODULE_PATH/samples/fade
0 commit comments