Skip to content

lcd: fix incompatible feature #693

lcd: fix incompatible feature

lcd: fix incompatible feature #693

Workflow file for this run

name: Build Test Application
on:
pull_request:
types: [opened, reopened, synchronize]
paths:
- 'components/**'
- 'test_app/**'
- '.github/workflows/build_test.yml'
jobs:
build:
strategy:
matrix:
idf_ver: ["release-v4.3", "release-v4.4", "latest"]
idf_target: ["esp32", "esp32s2", "esp32c3", "esp32s3"]
exclude:
- idf_ver: "release-v4.3"
idf_target: esp32s3 # ESP32S3 support started with version 4.4
runs-on: ubuntu-20.04
container: espressif/idf:${{ matrix.idf_ver }}
steps:
- uses: actions/checkout@v3
- name: Build ESP-BSP Test Application
env:
IDF_TARGET: ${{ matrix.idf_target }}
working-directory: test_app
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