Skip to content

build(deps): bump JamesIves/github-pages-deploy-action from 4.7.3 to 4.7.6 #20

build(deps): bump JamesIves/github-pages-deploy-action from 4.7.3 to 4.7.6

build(deps): bump JamesIves/github-pages-deploy-action from 4.7.3 to 4.7.6 #20

name: Build Examples with C++ Compiler
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build-examples:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Generate lv_conf.h
run: |
python ./scripts/generate_lv_conf.py \
--template lv_conf_template.h \
--config lv_conf.h \
--defaults configs/ci/examples/lv_conf_examples.defaults
- name: Build Examples with C++ compiler
run: g++ -DLV_CONF_PATH="\"$(pwd)/lv_conf.h\"" -Werror -c $(find examples -type f \( -name '*.cpp' -o -name '*.c' \))