Skip to content

Commit

Permalink
Merge branch 'master' into add_support_for_async_bdx_transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
nivi-apple authored Oct 8, 2024
2 parents 91eed4b + 4a21a8d commit 4eb2b86
Show file tree
Hide file tree
Showing 988 changed files with 72,849 additions and 19,724 deletions.
11 changes: 11 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ RUN apt-get update \
valgrind \
docker.io \
iputils-ping \
icecc \
&& :

RUN groupadd -g $USER_GID $USERNAME \
Expand Down Expand Up @@ -80,3 +81,13 @@ ENV TIZEN_ROOTFS /tizen_rootfs

# Fast Model GDB plugins path for debugging support
ENV FAST_MODEL_PLUGINS_PATH /opt/FastModelsPortfolio_11.16/plugins/Linux64_GCC-9.3

# Set up ccache as a pigweed command launcher when using the scripts/build/build_examples.py
# script. Also, set up icecc as the command prefix for ccache. Such setup allows to benefit
# from compilation caching and distributed compilation at the same time.
#
# NOTE: In order to use distributed compilation with icecc, one should run
# "scripts/icecc.sh start" before starting the build.
ENV CHIP_PW_COMMAND_LAUNCHER ccache
ENV CCACHE_PREFIX icecc
ENV PATH /usr/lib/ccache:$PATH
1 change: 1 addition & 0 deletions .github/.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1603,6 +1603,7 @@ xFFF
xFFFF
xfffff
xFFFFFFEFFFFFFFFF
XMLPICSValidator
xtensa
xvzf
xwayland
Expand Down
2 changes: 0 additions & 2 deletions .github/CODEOWNERS

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/bloat_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81

steps:
- name: Checkout
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Builds

on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
- 'v*-branch'
pull_request:
merge_group:
workflow_dispatch:
Expand All @@ -42,7 +43,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81
volumes:
- "/:/runner-root-volume"
- "/tmp/log_output:/tmp/test_logs"
Expand Down Expand Up @@ -138,7 +139,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81
volumes:
- "/:/runner-root-volume"
- "/tmp/log_output:/tmp/test_logs"
Expand Down Expand Up @@ -283,7 +284,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81
volumes:
- "/:/runner-root-volume"
- "/tmp/log_output:/tmp/test_logs"
Expand Down Expand Up @@ -346,7 +347,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81
volumes:
- "/:/runner-root-volume"
- "/tmp/log_output:/tmp/test_logs"
Expand Down Expand Up @@ -457,7 +458,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81
volumes:
- "/:/runner-root-volume"
- "/tmp/log_output:/tmp/test_logs"
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Build Chef CI examples on all platforms

on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
- 'v*-branch'
pull_request:
merge_group:

Expand All @@ -35,7 +36,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build:77
image: ghcr.io/project-chip/chip-build:81
options: --user root

steps:
Expand All @@ -56,7 +57,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build-esp32:77
image: ghcr.io/project-chip/chip-build-esp32:81
options: --user root

steps:
Expand All @@ -77,7 +78,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build-nrf-platform:77
image: ghcr.io/project-chip/chip-build-nrf-platform:81
options: --user root

steps:
Expand All @@ -98,7 +99,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build-telink:77
image: ghcr.io/project-chip/chip-build-telink:81
options: --user root

steps:
Expand All @@ -110,7 +111,7 @@ jobs:
platform: telink
# - name: Update Zephyr to specific revision (for developers purpose)
# shell: bash
# run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py ab81a585fca6a83b30e1f4e58a021113d6a3acb8"
# run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 3ed7686a9378de6be1368c912f9a42f998bbfb18"
- name: CI Examples Telink
shell: bash
run: |
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/cirque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Cirque

on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
- 'v*-branch'
pull_request:
merge_group:
workflow_dispatch:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/darwin-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Darwin Tests

on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
- 'v*-branch'
pull_request:
merge_group:
workflow_dispatch:
Expand All @@ -37,7 +38,7 @@ jobs:

strategy:
matrix:
build_variant: [no-ble-asan-clang]
build_variant: [no-ble-no-shell-asan-clang]
env:
BUILD_VARIANT: ${{matrix.build_variant}}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Darwin

on:
push:
branches-ignore:
- "dependabot/**"
branches:
- master
- 'v*-branch'
pull_request:
merge_group:
workflow_dispatch:
Expand All @@ -36,7 +37,7 @@ jobs:
framework:
name: Build framework
if: github.actor != 'restyled-io[bot]'
runs-on: macos-14
runs-on: macos-13
strategy:
matrix:
options: # We don't need a full matrix
Expand Down Expand Up @@ -73,7 +74,7 @@ jobs:
name: Run framework tests
if: github.actor != 'restyled-io[bot]'
needs: [framework] # serialize to avoid running to many parallel macos runners
runs-on: macos-14
runs-on: macos-13
strategy:
matrix:
options: # We don't need a full matrix
Expand Down Expand Up @@ -111,8 +112,7 @@ jobs:
working-directory: src/darwin/Framework
run: |
mkdir -p /tmp/darwin/framework-tests
echo "This is a simple log" > /tmp/darwin/framework-tests/end_user_support_log.txt
../../../out/debug/all-clusters-app/chip-all-clusters-app --interface-id -1 --end_user_support_log /tmp/darwin/framework-tests/end_user_support_log.txt > >(tee /tmp/darwin/framework-tests/all-cluster-app.log) 2> >(tee /tmp/darwin/framework-tests/all-cluster-app-err.log >&2) &
../../../out/debug/all-clusters-app/chip-all-clusters-app --interface-id -1 > >(tee /tmp/darwin/framework-tests/all-cluster-app.log) 2> >(tee /tmp/darwin/framework-tests/all-cluster-app-err.log >&2) &
export TEST_RUNNER_ASAN_OPTIONS=__CURRENT_VALUE__:detect_stack_use_after_return=1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_img.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
# ApplyLayer exit status 1 stdout: stderr: write /opt/fsl-imx-xwayland/5.15-kirkstone/sysroots/armv8a-poky-linux/opt/ltp/testcases/bin/fanotify15: no space left on device
# - "-imx"
- "-java"
- "-k32w"
- "-nxp"
- "-nrf-platform"
- "-telink"
- "-ti"
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/doxygen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ name: Doxygen

on:
push:
branches:
- master
- 'v*-branch'
paths:
- "**.do[xc]"
- "**.c[cs]?"
Expand Down Expand Up @@ -81,7 +84,7 @@ jobs:

runs-on: ubuntu-latest
container:
image: ghcr.io/project-chip/chip-build-doxygen:77
image: ghcr.io/project-chip/chip-build-doxygen:81

if: github.actor != 'restyled-io[bot]'

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/example-tv-casting-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: TV Casting Example - Darwin

on:
push:
branches-ignore:
- "dependabot/**"
branches:
- master
- 'v*-branch'
pull_request:
merge_group:
workflow_dispatch:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/examples-ameba.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Build example - Ameba

on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
- 'v*-branch'
pull_request:
merge_group:

Expand All @@ -38,7 +39,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build-ameba:77
image: ghcr.io/project-chip/chip-build-ameba:81
options: --user root

steps:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/examples-asr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ name: Build example - ASR

on:
push:
branches-ignore:
- 'dependabot/**'
branches:
- master
- 'v*-branch'
pull_request:
merge_group:

Expand All @@ -36,7 +37,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build-asr:77
image: ghcr.io/project-chip/chip-build-asr:81
options: --user root

steps:
Expand Down
Loading

0 comments on commit 4eb2b86

Please sign in to comment.