From 8583a6a0f8d33bbcd9043659a2a0386167295f4a Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Sun, 4 Aug 2024 17:18:13 +0200 Subject: [PATCH] Don't set partition scheme for esp8266 boards --- .github/workflows/build-arduino.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-arduino.yml b/.github/workflows/build-arduino.yml index d227ae4..57fc7ad 100644 --- a/.github/workflows/build-arduino.yml +++ b/.github/workflows/build-arduino.yml @@ -40,6 +40,9 @@ jobs: # Temporarily disabled: # - examples/BLELed - examples/Temperature + include: + - board: esp32:esp32:esp32thing + partition_scheme: --board-options PartitionScheme=min_spiffs steps: - name: Checkout code uses: actions/checkout@v2 @@ -108,7 +111,7 @@ jobs: - name: Build ${{ matrix.example }} ${{ matrix.board }} run: | - arduino-cli compile --fqbn ${{ matrix.board }} --board-options PartitionScheme=min_spiffs ${{ matrix.example }} + arduino-cli compile --fqbn ${{ matrix.board }} ${{ matrix.partition_scheme }} ${{ matrix.example }} - name: Uninstall iotsa and custom libraries run: |