Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/workflows/spread-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,40 +132,6 @@ jobs:
spread google:ubuntu-22.04-64:tests/spread/core22/remote-build \
google:ubuntu-24.04-64:tests/spread/core24/remote-build \
google:fedora-39-64:tests/spread/core24/remote-build:no_platforms

- name: Discard spread workers
if: always()
run: |
shopt -s nullglob
for r in .spread-reuse.*.yaml; do
spread -discard -reuse-pid="$(echo "$r" | grep -o -E '[0-9]+')"
done

matter-sdk:
needs: [predicate, snap-build]
if: needs.predicate.outputs.should_run == 'true'
runs-on: [spread-installed]
steps:
- name: Cleanup job workspace
run: |
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- name: Checkout snapcraft
uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: true
- name: Download snap artifact
uses: actions/download-artifact@v8
with:
name: snap
path: tests
- name: matter-sdk test
run: |
spread \
google:ubuntu-22.04-64:tests/spread/plugins/craft-parts/matter-sdk \
google:ubuntu-22.04-64:tests/spread/core24-suites/plugins/matter-sdk

- name: Discard spread workers
if: always()
run: |
Expand Down
4 changes: 0 additions & 4 deletions docs/explanation/cryptography.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ build tools, and which build tools they use to download and verify dependencies.
- ``flutter``
- Git

* - :ref:`Matter SDK <reference_matter_sdk_plugin>`
- ``matter``
- Git

core22
------

Expand Down
1 change: 0 additions & 1 deletion docs/reference/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ This section contains an in-depth description of the plugins available in Snapcr
/common/craft-parts/reference/plugins/jlink_plugin
plugins/kernel_plugin
/common/craft-parts/reference/plugins/make_plugin
plugins/matter_sdk_plugin
plugins/maven_plugin
/common/craft-parts/reference/plugins/maven_use_plugin
/common/craft-parts/reference/plugins/meson_plugin
Expand Down
110 changes: 0 additions & 110 deletions docs/reference/plugins/matter_sdk_plugin.rst

This file was deleted.

2 changes: 1 addition & 1 deletion snapcraft/parts/lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import argparse


_EXPERIMENTAL_PLUGINS = ["kernel", "initrd", "matter-sdk"]
_EXPERIMENTAL_PLUGINS = ["kernel", "initrd"]


def run(command_name: str, parsed_args: "argparse.Namespace") -> None:
Expand Down
2 changes: 0 additions & 2 deletions snapcraft/parts/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from .flutter_plugin import FlutterPlugin
from .initrd_plugin import InitrdPlugin
from .kernel_plugin import KernelPlugin
from .matter_sdk_plugin import MatterSdkPlugin
from .poetry_plugin import PoetryPlugin
from .python_plugin import PythonPlugin
from .uv_plugin import UvPlugin
Expand All @@ -33,7 +32,6 @@
"CondaPlugin",
"FlutterPlugin",
"InitrdPlugin",
"MatterSdkPlugin",
"KernelPlugin",
"PoetryPlugin",
"PythonPlugin",
Expand Down
163 changes: 0 additions & 163 deletions snapcraft/parts/plugins/matter_sdk_plugin.py

This file was deleted.

2 changes: 0 additions & 2 deletions snapcraft/parts/plugins/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
from .flutter_plugin import FlutterPlugin
from .initrd_plugin import InitrdPlugin
from .kernel_plugin import KernelPlugin
from .matter_sdk_plugin import MatterSdkPlugin


def get_plugins(core22: bool) -> dict[str, PluginType]:
Expand All @@ -40,7 +39,6 @@ def get_plugins(core22: bool) -> dict[str, PluginType]:
"flutter": FlutterPlugin,
"kernel": KernelPlugin,
"initrd": InitrdPlugin,
"matter-sdk": MatterSdkPlugin,
} | python_common.get_python_plugins()

return plugins
Expand Down
Loading
Loading