forked from canonical/snapcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add matter hello world snap for spread test
- Loading branch information
1 parent
d4f6935
commit c944a99
Showing
4 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/build-and-run-hello/matter-hello/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# matter_hello | ||
|
||
A new Matter project. | ||
|
||
## Getting Started | ||
|
||
This project is a starting point for a Matter application. | ||
|
||
For help getting started with Matter development, view the | ||
[Matter SDK](https://github.com/project-chip/connectedhomeip). |
3 changes: 3 additions & 0 deletions
3
tests/spread/plugins/craft-parts/build-and-run-hello/matter-hello/hello
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
echo "hello world" |
20 changes: 20 additions & 0 deletions
20
tests/spread/plugins/craft-parts/build-and-run-hello/matter-hello/snap/snapcraft.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: matter-hello | ||
version: "1.0" | ||
summary: simple matter application | ||
description: build an application using Matter SDK and say "hello world" | ||
base: core22 | ||
confinement: strict | ||
|
||
apps: | ||
hello: | ||
command: | ||
hello | ||
|
||
parts: | ||
matter: | ||
plugin: matter | ||
matter-sdk-version: "master" | ||
matter-zap-version: "v2023.11.13" | ||
hello: | ||
plugin: dump | ||
source: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters