Skip to content

Update CH422G and add a new example #32

Update CH422G and add a new example

Update CH422G and add a new example #32

Workflow file for this run

name: Build Test Application
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
strategy:
matrix:
idf_ver: ["v4.4.5", "v5.0", "v5.1"]
idf_target: ["esp32", "esp32s2", "esp32c3", "esp32s3"]
runs-on: ubuntu-20.04
container: espressif/idf:${{ matrix.idf_ver }}
steps:
- uses: actions/checkout@v3
- name: Build ESP_IOExpander Test Application
env:
IDF_TARGET: ${{ matrix.idf_target }}
working-directory: test_apps
shell: bash
run: |
. ${IDF_PATH}/export.sh
export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
idf.py build