Removes PIO in IDF 5.3 - Arduino Core 3.1.x #747
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ESP32 Arduino Libs CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "**" | |
- "!**.md" | |
- "!.github/workflows/cron_build.yml" | |
- "!.github/workflows/cron.yml" | |
- "!.github/workflows/docker.yml" | |
- "!.github/workflows/repository_dispatch.yml" | |
- "!tools/config_editor/**" | |
- "!tools/docker/**" | |
concurrency: | |
group: esp-idf-libs-${{github.event.pull_request.number || github.ref}} | |
cancel-in-progress: true | |
jobs: | |
build-libs: | |
name: Build Libs for ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: [esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2, esp32p4] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bash ./tools/prepare-ci.sh | |
- name: Build Libs for ${{ matrix.target }} | |
run: bash ./build.sh -e -t ${{ matrix.target }} | |
- name: Upload build | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-${{ matrix.target }} | |
path: build | |
- name: Upload archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-${{ matrix.target }} | |
path: dist | |
combine-artifacts: | |
name: Combine artifacts | |
needs: build-libs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
pattern: artifacts-* | |
merge-multiple: true | |
- shell: bash | |
run: | | |
mkdir -p out | |
find dist -name 'arduino-esp32-libs-esp*.tar.gz' -exec tar zxvf {} -C out \; | |
cd out/tools/esp32-arduino-libs && tar zcf ../../../dist/esp32-arduino-libs.tar.gz * && cd ../../.. | |
cp out/package_esp32_index.template.json dist/package_esp32_index.template.json | |
- name: Upload full esp32-arduino-libs archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: esp32-arduino-libs | |
path: dist/esp32-arduino-libs.tar.gz | |
- name: Upload package_esp32_index.template.json | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package-esp32-index-json | |
path: dist/package_esp32_index.template.json | |