Skip to content

Commit

Permalink
ci: add build matrix for esp32 core version
Browse files Browse the repository at this point in the history
  • Loading branch information
vChavezB authored Oct 5, 2024
1 parent 45ae2b2 commit 6e837f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ jobs:
env:
ARDUINO_LIB_PATH: /home/runner/Arduino/libraries
ESP32_BOARD_URL: https://dl.espressif.com/dl/package_esp32_index.json
strategy:
fail-fast: false
matrix:
esp32_core_version: ["2.0.17","3.0.5"]
runs-on: ubuntu-22.04
steps:
# Clone the repo
Expand All @@ -22,7 +26,7 @@ jobs:
arduino-cli core update-index
arduino-cli config init
arduino-cli config set board_manager.additional_urls "${ESP32_BOARD_URL}"
arduino-cli core install esp32:esp32@2.0.11
arduino-cli core install esp32:esp32@${{ matrix.esp32_core_version }}
- name: Install library
run: |
Expand Down

0 comments on commit 6e837f1

Please sign in to comment.