Skip to content

Commit

Permalink
Add .github/workflows/build.yml, fix CI build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
kubamracek committed Dec 13, 2024
1 parent 416dc40 commit 20365ef
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 1 deletion.
61 changes: 61 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Build Matter Examples

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
# Build on Mondays at 9am PST every week
- cron: '0 17 * * 1'

Check failure on line 10 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / Soundness / YAML lint check

10:13 [colons] too many spaces after colon

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
container: espressif/esp-matter:latest

strategy:
fail-fast: false
matrix:
example: [empty-template, led-blink, smart-light]

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Install Swift & CMake
run: |
set -vex
# TODO: swap for an official downloadable toolchain once it's out
SWIFT_TOOLCHAIN_VERSION=swift-DEVELOPMENT-SNAPSHOT-2024-12-13-a
#wget https://download.swift.org/development/ubuntu2204/${SWIFT_TOOLCHAIN_VERSION}/${SWIFT_TOOLCHAIN_VERSION}-ubuntu22.04.tar.gz
wget https://download.swift.org/tmp-ci-nightly/development/swift-DEVELOPMENT-SNAPSHOT-2024-12-13-a-4019/ubuntu2204/swift-DEVELOPMENT-SNAPSHOT-2024-12-13-a/swift-DEVELOPMENT-SNAPSHOT-2024-12-13-a-ubuntu2204.tar.gz
tar vxzf ${SWIFT_TOOLCHAIN_VERSION}-ubuntu2204.tar.gz
export PATH="`pwd`/usr/bin/:$PATH"
swiftc --version
wget https://github.com/Kitware/CMake/releases/download/v3.30.2/cmake-3.30.2-linux-x86_64.tar.gz
tar xzf cmake-3.30.2-linux-x86_64.tar.gz
export PATH="`pwd`/cmake-3.30.2-linux-x86_64/bin:$PATH"
cmake --version
echo "PATH=$PATH" >> $GITHUB_ENV
- name: Build with idf.py
run: |
pwd
cd /opt/espressif/esp-idf
. ./export.sh
cd -
cd /opt/espressif/esp-matter
. ./export.sh
cd -
cd ${{ matrix.example }}/
idf.py set-target esp32c6 &&
idf.py build
4 changes: 3 additions & 1 deletion smart-light/Matter/Matter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ extension Matter {
endpoints.append(endpoint)
}

var innerNode: RootNode
// swift-format-ignore: NeverUseImplicitlyUnwrappedOptionals
// This is never actually nil after init(), and inside init we want to form a callback closure that references self.
var innerNode: RootNode!

init() {
// Initialize persistent storage.
Expand Down
2 changes: 2 additions & 0 deletions smart-light/main/BridgingHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
//
// connectedhomeip/src/credentials/FabricTable.h:82:69: error: use of undeclared identifier 'strnlen'
extern "C" size_t strnlen(const char *s, size_t maxlen);
// esp-matter/components/esp_matter/esp_matter_client.h:57:26: error: use of undeclared identifier 'strdup'
extern "C" char *strdup(const char *s1);

#include <esp_matter.h>
#include <esp_matter_cluster.h>
Expand Down

0 comments on commit 20365ef

Please sign in to comment.