Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enforce backwards protocol compatibility in controller-clusters.matter #29377

Merged
merged 1 commit into from
Sep 22, 2023
Merged
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
49 changes: 49 additions & 0 deletions .github/workflows/protocol_compatibility.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Copyright (c) 2020-2021 Project CHIP Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Backwards compatibility check
on:
pull_request:
paths:
- "src/controller/data_model/controller-clusters.matter"

jobs:
check_clusters_matter:
name: Check controller-clusters.matter backwards compatibility
runs-on: ubuntu-latest
if: github.event.pull_request && !(contains(github.event.pull_request.labels.*.name, 'skip-protocol-compatibility'))

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install click coloredlogs lark
- name: Create old/new copies
run: |
mkdir -p out
cp src/controller/data_model/controller-clusters.matter out/new_version.matter
wget '${{github.event.pull_request.diff_url}}' --output-document out/patch.diff
patch -p1 --reverse <out/patch.diff
cp src/controller/data_model/controller-clusters.matter out/old_version.matter
patch -p1 <out/patch.diff
andy31415 marked this conversation as resolved.
Show resolved Hide resolved
- name: Check backwards compatibility
run: |
scripts/backwards_compatibility_checker.py out/old_version.matter out/new_version.matter

Loading