[CI] Added env specifier

pull/180/head
Jan Gromeš 2020-08-22 11:51:00 +02:00 zatwierdzone przez GitHub
rodzic 7e999b96a6
commit c29b4f90f3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -24,25 +24,25 @@ jobs:
steps:
- name: Install arduino-cli
if: ${{ run-build }}
if: ${{ env.run-build }}
run: |
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
- name: Install platform
if: ${{ run-build }}
if: ${{ env.run-build }}
run: |
arduino-cli core update-index
arduino-cli core install ${{ matrix.platform }}
echo "::set-env name=WARNINGS::all"
- name: Checkout
if: ${{ run-build }}
if: ${{ env.run-build }}
uses: actions/checkout@v2
- name: Build all examples
if: ${{ run-build }}
if: ${{ env.run-build }}
run: |
for example in $(find $PWD/examples -name '*.ino' | sort); do
# check whether to skip this sketch