50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
name: Examples
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
example:
|
|
- "examples/arduino-blink"
|
|
- "examples/arduino-wifi-scan"
|
|
- "examples/arduino-ota"
|
|
- "examples/arduino-signed-ota"
|
|
- "examples/arduino-external-libs"
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: "recursive"
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: "3.9"
|
|
- name: Install dependencies
|
|
run: |
|
|
if [ "$RUNNER_OS" == "Windows" ]; then
|
|
git config --system core.longpaths true
|
|
fi
|
|
pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
|
pio pkg install --global --platform symlink://.
|
|
# OpenSSL needed for signed OTA update example
|
|
- name: Install OpenSSL
|
|
run: |
|
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
|
sudo apt-get install -y openssl
|
|
elif [ "$RUNNER_OS" == "Windows" ]; then
|
|
choco install openssl
|
|
elif [ "$RUNNER_OS" == "macOS" ]; then
|
|
brew install openssl
|
|
else
|
|
echo "$RUNNER_OS not supported"
|
|
exit 1
|
|
fi
|
|
shell: bash
|
|
- name: Build examples
|
|
run: |
|
|
pio run -d ${{ matrix.example }}
|