[CI] Added missing paths
This commit is contained in:
parent
051563aa73
commit
eb329f2690
1 changed files with 4 additions and 1 deletions
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
|
@ -13,10 +13,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
|
mkdir -p ~/.local/bin
|
||||||
|
echo "::add-path::~/.local/bin"
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/.local/bin sh
|
||||||
export PATH=$PATH:$PWD/bin
|
export PATH=$PATH:$PWD/bin
|
||||||
arduino-cli core update-index;
|
arduino-cli core update-index;
|
||||||
arduino-cli core install arduino:avr;
|
arduino-cli core install arduino:avr;
|
||||||
|
export WARNINGS=all;
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue