Bump third_party/openthread/repo from e958f88
to af5938e
#455
Workflow file for this run
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
# 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: Darwin | |
on: | |
push: | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }} | |
cancel-in-progress: true | |
env: | |
CHIP_NO_LOG_TIMESTAMPS: true | |
jobs: | |
darwin: | |
name: Build Darwin | |
if: github.actor != 'restyled-io[bot]' | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Environment | |
run: brew install [email protected] | |
- name: Checkout submodules & Bootstrap | |
uses: ./.github/actions/checkout-submodules-and-bootstrap | |
with: | |
platform: darwin | |
- name: Block zap-cli from being used | |
# xcodebuild is NOT expected to require zap-cli | |
run: scripts/run_in_build_env.sh 'D=$(dirname $(which zap-cli)) && mv $D/zap-cli $D/zap-cli.moved' | |
- name: Validate zap-cli is NOT available | |
# run_in_build_env.sh is used to ensure PATH is set to something that would otherwise find zap-cli | |
run: scripts/run_in_build_env.sh '(zap-cli --version && exit 1) || exit 0' | |
- name: Run iOS Build Debug | |
working-directory: src/darwin/Framework | |
# For now disable unguarded-availability-new warnings because we | |
# internally use APIs that we are annotating as only available on | |
# new enough versions. Maybe we should change out deployment | |
# target versions instead? | |
run: xcodebuild -target "Matter" -sdk iphoneos OTHER_CFLAGS='${inherited} -Wno-unguarded-availability-new' | |
- name: Run iOS Build Release | |
working-directory: src/darwin/Framework | |
# For now disable unguarded-availability-new warnings because we | |
# internally use APIs that we are annotating as only available on | |
# new enough versions. Maybe we should change out deployment | |
# target versions instead? | |
run: xcodebuild -target "Matter" -sdk iphoneos -configuration Release OTHER_CFLAGS='${inherited} -Wno-unguarded-availability-new' | |
- name: Clean Build | |
run: xcodebuild clean | |
working-directory: src/darwin/Framework | |
- name: Delete Defaults | |
run: defaults delete com.apple.dt.xctest.tool | |
continue-on-error: true | |
- name: Run macOS Build | |
# Enable -Werror by hand here, because the Xcode config can't | |
# enable it for various reasons. Keep whatever Xcode settings | |
# for OTHER_CFLAGS exist by using ${inherited}. | |
# | |
# Enable -Wconversion by hand as well, because it seems to not be | |
# enabled by default in the Xcode config. | |
# | |
# Disable -Wunguarded-availability-new because we internally use | |
# APIs we added after our deployment target version. Maybe we | |
# should change the deployment target version instead? | |
run: xcodebuild -target "Matter" -sdk macosx OTHER_CFLAGS='${inherited} -Werror -Wconversion -Wno-unguarded-availability-new' | |
working-directory: src/darwin/Framework | |
- name: Clean Build | |
run: xcodebuild clean | |
working-directory: src/darwin/Framework | |
- name: Make zap-cli work again | |
run: scripts/run_in_build_env.sh 'D=$(dirname $(which zap-cli.moved)) && mv $D/zap-cli.moved $D/zap-cli' | |
- name: Validate zap-cli is again available | |
run: scripts/run_in_build_env.sh 'zap-cli --version' | |
- name: Build example All Clusters Server | |
run: | | |
scripts/examples/gn_build_example.sh examples/all-clusters-app/linux out/debug chip_config_network_layer_ble=false | |
- name: Build example OTA Provider | |
run: | | |
scripts/examples/gn_build_example.sh examples/ota-provider-app/linux out/debug chip_config_network_layer_ble=false | |
- name: Build OTA image files with software version number 5 and 10 | |
run: | | |
scripts/examples/gn_build_example.sh examples/ota-requestor-app/linux out/debug chip_config_network_layer_ble=false non_spec_compliant_ota_action_delay_floor=0 chip_device_config_device_software_version=5 chip_device_config_device_software_version_string='"5.0"' | |
cp out/debug/chip-ota-requestor-app /tmp/ota-raw-image-v5 | |
scripts/examples/gn_build_example.sh examples/ota-requestor-app/linux out/debug chip_config_network_layer_ble=false non_spec_compliant_ota_action_delay_floor=0 chip_device_config_device_software_version=10 chip_device_config_device_software_version_string='"10.0"' | |
cp out/debug/chip-ota-requestor-app /tmp/ota-raw-image-v10 | |
- name: Build example OTA Requestor | |
run: | | |
scripts/examples/gn_build_example.sh examples/ota-requestor-app/linux out/debug chip_config_network_layer_ble=false non_spec_compliant_ota_action_delay_floor=0 | |
- name: Delete Defaults | |
run: defaults delete com.apple.dt.xctest.tool | |
continue-on-error: true | |
- name: Run Framework Tests | |
# For now disable unguarded-availability-new warnings because we | |
# internally use APIs that we are annotating as only available on | |
# new enough versions. Maybe we should change out deployment | |
# target versions instead? | |
run: | | |
mkdir -p /tmp/darwin/framework-tests | |
../../../out/debug/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) & | |
../../../out/debug/chip-all-clusters-app --interface-id -1 --dac_provider ../../../credentials/development/commissioner_dut/struct_cd_origin_pid_vid_correct/test_case_vector.json --product-id 32768 --discriminator 3839 --secured-device-port 5539 --KVS /tmp/chip-all-clusters-app-kvs2 > >(tee /tmp/darwin/framework-tests/all-cluster-app-origin-vid.log) 2> >(tee /tmp/darwin/framework-tests/all-cluster-app-origin-vid-err.log >&2) & | |
# Make sure each ota-requestor is using a different port, discriminator, and KVS from | |
# all-clusters-app and from other requestors. | |
# | |
# And a different port from the test harness too; the test harness uses port 5541. | |
../../../out/debug/chip-ota-requestor-app --interface-id -1 --secured-device-port 5542 --discriminator 1111 --KVS /tmp/chip-ota-requestor-kvs1 --otaDownloadPath /tmp/chip-ota-requestor-downloaded-image1 --autoApplyImage > >(tee /tmp/darwin/framework-tests/ota-requestor-app-1.log) 2> >(tee /tmp/darwin/framework-tests/ota-requestor-app-err-1.log >&2) & | |
../../../out/debug/chip-ota-requestor-app --interface-id -1 --secured-device-port 5543 --discriminator 1112 --KVS /tmp/chip-ota-requestor-kvs2 --otaDownloadPath /tmp/chip-ota-requestor-downloaded-image2 --autoApplyImage > >(tee /tmp/darwin/framework-tests/ota-requestor-app-2.log) 2> >(tee /tmp/darwin/framework-tests/ota-requestor-app-err-2.log >&2) & | |
../../../out/debug/chip-ota-requestor-app --interface-id -1 --secured-device-port 5544 --discriminator 1113 --KVS /tmp/chip-ota-requestor-kvs3 --otaDownloadPath /tmp/chip-ota-requestor-downloaded-image3 --autoApplyImage > >(tee /tmp/darwin/framework-tests/ota-requestor-app-3.log) 2> >(tee /tmp/darwin/framework-tests/ota-requestor-app-err-3.log >&2) & | |
# Disable BLE because the app does not have the permission to use | |
# it and that may crash the CI. | |
# | |
# -enableUndefinedBehaviorSanitizer instruments the code in Matter.framework, | |
# but to instrument the code in the underlying libCHIP we need to pass CHIP_IS_UBSAN=YES | |
TEST_RUNNER_ASAN_OPTIONS=__CURRENT_VALUE__:detect_stack_use_after_return=1 xcodebuild test -target "Matter" -scheme "Matter Framework Tests" -sdk macosx -enableAddressSanitizer YES -enableUndefinedBehaviorSanitizer YES OTHER_CFLAGS='${inherited} -Werror -Wconversion -Wno-unguarded-availability-new' CHIP_IS_UBSAN=YES CHIP_IS_BLE=NO > >(tee /tmp/darwin/framework-tests/darwin-tests-asan.log) 2> >(tee /tmp/darwin/framework-tests/darwin-tests-asan-err.log >&2) | |
# -enableThreadSanitizer instruments the code in Matter.framework, | |
# but to instrument the code in the underlying libCHIP we need to pass CHIP_IS_TSAN=YES | |
xcodebuild test -target "Matter" -scheme "Matter Framework Tests" -sdk macosx -enableThreadSanitizer YES OTHER_CFLAGS='${inherited} -Werror -Wconversion -Wno-unguarded-availability-new' CHIP_IS_TSAN=YES CHIP_IS_BLE=NO > >(tee /tmp/darwin/framework-tests/darwin-tests-tsan.log) 2> >(tee /tmp/darwin/framework-tests/darwin-tests-tsan-err.log >&2) | |
working-directory: src/darwin/Framework | |
- name: Build Matter TV Casting Bridge | |
run: | | |
xcodebuild -target "MatterTvCastingBridge" -sdk iphoneos | |
working-directory: examples/tv-casting-app/darwin/MatterTvCastingBridge | |
- name: Uploading log files | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() && !env.ACT }} | |
with: | |
name: darwin-framework-test-logs | |
path: /tmp/darwin/framework-tests | |
retention-days: 5 |