File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 env :
1111 ARDUINO_CLI_PATH : ' /home/runner/bin'
12- ARDUINO_CLI_VERSION : ' latest'
1312 steps :
1413 - name : Checkout repository
1514 uses : actions/checkout@v4
1615
1716 - name : Install the latest version of Arduino CLI
1817 run : |
19- curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh -s -- -b ${{ env.ARDUINO_CLI_PATH }} ${{ env.ARDUINO_CLI_VERSION }}
18+ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh -s -- -b ${{ env.ARDUINO_CLI_PATH }}
2019
2120 - name : Update Arduino cores and libraries and install Zephyr core
2221 run : |
23- export PATH="${{ env.TASKFILE_PATH }}:$PATH"
22+ export PATH="${{ env.ARDUINO_CLI_PATH }}:$PATH"
2423 arduino-cli update
2524 arduino-cli core install arduino:zephyr
2625
2726 - name : Verify sketches
2827 run : |
29- export PATH="${{ env.TASKFILE_PATH }}:$PATH"
28+ export PATH="${{ env.ARDUINO_CLI_PATH }}:$PATH"
3029 SKETCHES=$(find . -name "*.ino")
3130 for SKETCH in $SKETCHES; do
3231 echo "Verifying $SKETCH"
You can’t perform that action at this time.
0 commit comments