File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,19 @@ jobs:
1111 - name : Checkout repository
1212 uses : actions/checkout@v4
1313
14- - name : Set up Arduino CLI
14+ - name : Install the latest version of Arduino CLI
1515 run : |
16- mkdir -p $HOME/local/bin
17- curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | $HOME/local/bin sh
18- echo "$HOME/local/bin" >> $GITHUB_PATH
16+ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh
1917
2018 - name : Update Arduino cores and libraries and install Zephyr core
2119 run : |
22- arduino-cli update
23- arduino-cli core install arduino:zephyr
20+ ./ arduino-cli update
21+ ./ arduino-cli core install arduino:zephyr
2422
2523 - name : Verify sketches
2624 run : |
2725 SKETCHES=$(find . -name "*.ino")
2826 for SKETCH in $SKETCHES; do
2927 echo "Verifying $SKETCH"
30- arduino-cli compile --fqbn arduino:zephyr:unoq "$SKETCH"
28+ ./ arduino-cli compile --fqbn arduino:zephyr:unoq "$SKETCH"
3129 done
You can’t perform that action at this time.
0 commit comments