Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat(matter): adds HoldTime attribute to the Matter Occupancy endpoint#6340

feat(matter): adds HoldTime attribute to the Matter Occupancy endpoint

feat(matter): adds HoldTime attribute to the Matter Occupancy endpoint #6340

Workflow file for this run

# This file is used to run the runtime tests for the Arduino core for ESP32.
# The tests are run on the hardware, Wokwi and QEMU emulators.
# The QEMU tests are disabled for now as they are redundant with most of the Wokwi tests.
# As the Wokwi tests require access to secrets, they are run in a separate workflow.
# We need to ensure that the artifacts from previous tests in the chain are propagated for publishing the results.
# This is the current trigger sequence for the tests:
# tests.yml -> tests_hw_wokwi.yml -> tests_results.yml
# ⌙> tests_build.yml
# ⌙> tests_qemu.yml
name:Runtime Tests
on:
workflow_dispatch:
pull_request:
types:[opened, reopened, closed, synchronize, labeled, unlabeled]
paths:
-".github/scripts/install*.sh"
-".github/workflows/tests*"
-".github/scripts/sketch_utils.sh"
-"tests/**"
-"cores/**"
-"libraries/*/src/**.cpp"
-"libraries/*/src/**.h"
-"libraries/*/src/**.c"
-"package/**"
-"!*.md"
-"!*.properties"
schedule:
-cron:"0 0 * * *"
concurrency:
group:tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress:true
permissions:
contents:read
pull-requests:read
jobs:
push-event-file:
name:Push event file
runs-on:ubuntu-latest
steps:
-name:Upload
uses:actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02# v4.6.2
with:
name:event_file
path:${{ github.event_path }}
gen-matrix:
name:Generate matrix
runs-on:ubuntu-latest
outputs:
build-types:${{ steps.set-matrix.outputs.build-types }}
build-targets:${{ steps.set-matrix.outputs.build-targets }}
qemu-enabled:${{ steps.set-matrix.outputs.qemu-enabled }}
qemu-types:${{ steps.set-matrix.outputs.qemu-types }}
qemu-targets:${{ steps.set-matrix.outputs.qemu-targets }}
env:
IS_PR:${{ github.event.pull_request.number != null }}
PERFORMANCE_ENABLED:${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
steps:
-name:Checkout
uses:actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683# v4.2.2
with:
sparse-checkout:.github/scripts/tests_matrix.sh
-name:Set matrix
id:set-matrix
run:bash .github/scripts/tests_matrix.sh
-name:Upload
uses:actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02# v4.6.2
with:
name:matrix_info
path:info/*
call-build-tests:
name:Build
uses:./.github/workflows/tests_build.yml
needs:gen-matrix
strategy:
matrix:
type:${{ fromJson(needs.gen-matrix.outputs.build-types) }}
chip:${{ fromJson(needs.gen-matrix.outputs.build-targets) }}
with:
type:${{ matrix.type }}
chip:${{ matrix.chip }}
call-qemu-tests:
name:QEMU
uses:./.github/workflows/tests_qemu.yml
needs:[gen-matrix, call-build-tests]
if:${{ needs.gen-matrix.outputs.qemu-enabled == 'true' }}
strategy:
fail-fast:false
matrix:
type:${{ fromJson(needs.gen-matrix.outputs.qemu-types) }}
chip:${{ fromJson(needs.gen-matrix.outputs.qemu-targets) }}
with:
type:${{ matrix.type }}
chip:${{ matrix.chip }}
# Hardware and Wokwi tests are run after this workflow as they need access to secrets

[8]ページ先頭

©2009-2025 Movatter.jp