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 a8908f7 commit cebd0a0Copy full SHA for cebd0a0
.github/workflows/compile.yml
@@ -11,9 +11,12 @@ jobs:
11
# Install Arduino CLI manually
12
- name: Install Arduino CLI
13
run: |
14
+ # Download and extract Arduino CLI
15
wget -qO- https://downloads.arduino.cc/arduino-cli/arduino-cli_latest_Linux_64bit.tar.gz | tar -xvz
16
+ # Move to a location in PATH
17
sudo mv arduino-cli /usr/local/bin/
- arduino-cli version
18
+ # Verify installation
19
+ arduino-cli version || exit 1
20
21
# Ensure that Bash is used for compatibility with the prebuild script
22
- name: Ensure Bash Shell
0 commit comments