tweak for native build #615
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: IDFBuild | |
env: | |
REPO_URL: https://github.com/espressif/esp-idf | |
PROJECT_DIR: examples/Test/build_test | |
on: | |
push: | |
paths: | |
- '**.ino' | |
- '**.cpp' | |
- '**.hpp' | |
- '**.h' | |
- '**.c' | |
- '**IDFBuild.yml' | |
- 'CMakeLists.txt' | |
pull_request: | |
jobs: | |
build: | |
name: idf ${{ matrix.idf-version }}@${{ matrix.idf-board }}>esp-idf_graphicstest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
esp-idf-fqbn: | |
- [email protected] | |
#- [email protected] # esp-idf tools broken by cython/openOCD | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] # LGFX I2C not ready yet | |
include: | |
- { esp-idf-fqbn: [email protected], idf-board: esp32, idf-version: v4.1 } | |
#- { esp-idf-fqbn: [email protected], idf-board: esp32, idf-version: v4.2.5 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32, idf-version: v4.3.1 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s2, idf-version: v4.4.4 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s3, idf-version: v4.4.4 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32, idf-version: v5.0 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s2, idf-version: v5.0 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s3, idf-version: v5.0 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32, idf-version: v5.0.1 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s2, idf-version: v5.0.1 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s3, idf-version: v5.0.1 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32, idf-version: v5.1 } | |
- { esp-idf-fqbn: [email protected], idf-board: esp32s3, idf-version: v5.1 } | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Cache pip for ${{ matrix.esp-idf-fqbn }} | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ matrix.idf-version }}-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Cache espressif tools for ${{ matrix.esp-idf-fqbn }} | |
uses: actions/cache@v3 | |
id: espressif | |
with: | |
path: | | |
~/.espressif | |
key: ${{ runner.os }}-espressif-${{ matrix.idf-version }}-${{ hashFiles('**/lockfiles') }} | |
- name: Cache esp-idf for ${{ matrix.esp-idf-fqbn }} | |
id: cache-idf | |
uses: actions/cache@v3 | |
with: | |
path: ~/esp/esp-idf | |
key: ${{ runner.os }}-idf-${{ matrix.idf-version }}-${{ hashFiles('**/lockfiles') }} | |
- name: Get/Check IDF ${{ matrix.esp-idf-fqbn }} | |
run: | | |
mkdir -p ~/esp | |
cd ~/esp | |
if [ ! -d "./esp-idf/" ]; then git clone -b ${{ matrix.idf-version }} --recursive $REPO_URL esp-idf; fi | |
cd ~/esp/esp-idf | |
if [ ! -d "~/.espressif" ]; then ./install.sh; fi | |
- name: Build example for ${{ matrix.esp-idf-fqbn }} | |
run: | | |
source ~/esp/esp-idf/export.sh | |
cd ${{ env.PROJECT_DIR }} | |
idf.py set-target ${{ matrix.idf-board }} | |
idf.py build | |