From 2293808cd8f042f711e9f694e7b407893edd720a Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 22 Feb 2023 17:15:57 -0500 Subject: [PATCH] Add contact sensor app (with UI) to linux CI (#25254) * Build contact sensor app on linux * Also switch light app build to compile the UI variant * Fix path for example app --- .github/workflows/examples-linux-standalone.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/examples-linux-standalone.yaml b/.github/workflows/examples-linux-standalone.yaml index 317c1cddaffb6c..41f5cbc6218207 100644 --- a/.github/workflows/examples-linux-standalone.yaml +++ b/.github/workflows/examples-linux-standalone.yaml @@ -157,16 +157,16 @@ jobs: linux debug tv-casting-app \ out/linux-x64-tv-casting-app/chip-tv-casting-app \ /tmp/bloat_reports/ - - name: Build example lighting app with RPCs + - name: Build example lighting app with RPCs and UI timeout-minutes: 10 run: | ./scripts/run_in_build_env.sh \ "./scripts/build/build_examples.py \ - --target linux-x64-light-rpc \ + --target linux-x64-light-rpc-with-ui \ build" .environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \ - linux debug+rpc lighting-app \ - out/linux-x64-light-rpc/chip-lighting-app \ + linux debug+rpc+ui lighting-app \ + out/linux-x64-light-rpc-with-ui/chip-lighting-app \ /tmp/bloat_reports/ - name: Build example Standalone Bridge timeout-minutes: 10 @@ -212,7 +212,12 @@ jobs: linux debug lock-app \ out/linux-x64-lock/chip-lock-app \ /tmp/bloat_reports/ - + - name: Build example contact sensor with UI + run: | + ./scripts/run_in_build_env.sh \ + "./scripts/build/build_examples.py \ + --target linux-x64-contact-sensor-no-ble-with-ui \ + build" - name: Uploading Size Reports uses: actions/upload-artifact@v3 if: ${{ !env.ACT }}