mirror of
https://github.com/espressif/openthread.git
synced 2026-08-26 20:19:53 +00:00
This commit updates all GitHub Actions workflows to prevent CI jobs from hanging indefinitely during the Bootstrap step: - Add `timeout-minutes: 10` to all `Bootstrap` steps across all workflows (`build.yml`, `codeql.yml`, `nexus.yml`, `otbr.yml`, `otci.yml`, `otns.yml`, `posix.yml`, `simulation.yml`, `toranj.yml`, and `unit.yml`). - Add `--timeout=30` and retry flags to `wget` download commands in `build.yml` and `posix.yml` to prevent network stall hangs.
250 lines
8.6 KiB
YAML
250 lines
8.6 KiB
YAML
#
|
|
# Copyright (c) 2020, The OpenThread Authors.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
# 3. Neither the name of the copyright holder nor the
|
|
# names of its contributors may be used to endorse or promote products
|
|
# derived from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
name: Toranj
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'dependabot/**'
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'openthread/openthread' && github.run_id) || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
toranj-ncp:
|
|
name: toranj-ncp-${{ matrix.TORANJ_RADIO }}
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
TORANJ_RADIO: ['15.4']
|
|
env:
|
|
COVERAGE: 1
|
|
TORANJ_RADIO : ${{ matrix.TORANJ_RADIO }}
|
|
TORANJ_NCP : 1
|
|
TORANJ_EVENT_NAME: ${{ github.event_name }}
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: '3.12'
|
|
cache: pip
|
|
- name: Bootstrap
|
|
timeout-minutes: 10
|
|
env:
|
|
PR_BODY: "${{ github.event.pull_request.body }}"
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get --no-install-recommends install -y ninja-build lcov
|
|
python3 -m pip install -r tests/scripts/thread-cert/requirements.txt
|
|
- name: Build & Run
|
|
run: |
|
|
top_builddir=$(pwd)/build/toranj ./tests/toranj/start.sh
|
|
|
|
|
|
toranj-cli:
|
|
name: toranj-cli-${{ matrix.TORANJ_RADIO }}
|
|
runs-on: ubuntu-24.04
|
|
strategy:
|
|
matrix:
|
|
TORANJ_RADIO: ['15.4', 'trel', 'multi']
|
|
env:
|
|
COVERAGE: 1
|
|
TORANJ_RADIO : ${{ matrix.TORANJ_RADIO }}
|
|
TORANJ_CLI: 1
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: '3.12'
|
|
cache: pip
|
|
- name: Bootstrap
|
|
timeout-minutes: 10
|
|
env:
|
|
PR_BODY: "${{ github.event.pull_request.body }}"
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get --no-install-recommends install -y ninja-build lcov
|
|
python3 -m pip install -r tests/scripts/thread-cert/requirements.txt
|
|
- name: Build & Run
|
|
run: |
|
|
top_builddir=$(pwd)/build/toranj ./tests/toranj/start.sh
|
|
- name: Generate Coverage
|
|
if: "matrix.TORANJ_RADIO != 'multi'"
|
|
run: |
|
|
./script/test generate_coverage gcc
|
|
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
if: "matrix.TORANJ_RADIO != 'multi'"
|
|
with:
|
|
name: cov-toranj-cli-${{ matrix.TORANJ_RADIO }}
|
|
path: tmp/coverage.info
|
|
retention-days: 1
|
|
|
|
toranj-unittest:
|
|
name: toranj-unittest
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: '3.12'
|
|
cache: pip
|
|
- name: Bootstrap
|
|
timeout-minutes: 10
|
|
env:
|
|
PR_BODY: "${{ github.event.pull_request.body }}"
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get --no-install-recommends install -y ninja-build
|
|
- name: Build & Run
|
|
run: |
|
|
./tests/toranj/build.sh all
|
|
ninja test
|
|
#- - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Validate posix builds with different radio configs
|
|
git clean -dfx
|
|
./tests/toranj/build.sh ncp-15.4
|
|
git clean -dfx
|
|
./tests/toranj/build.sh ncp-trel
|
|
git clean -dfx
|
|
./tests/toranj/build.sh ncp-15.4+trel
|
|
git clean -dfx
|
|
./tests/toranj/build.sh posix-15.4
|
|
git clean -dfx
|
|
./tests/toranj/build.sh posix-15.4+trel
|
|
git clean -dfx
|
|
./tests/toranj/build.sh posix-trel
|
|
#- - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Log levels
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --log-level DEBG all
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --log-level INFO all
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --log-level NOTE all
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --log-level WARN all
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --log-level CRIT all
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --log-level NONE all
|
|
#- - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
git clean -dfx
|
|
./tests/toranj/build.sh --enable-plat-key-ref all
|
|
|
|
toranj-macos:
|
|
name: toranj-macos
|
|
runs-on: macos-14
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
- name: Bootstrap
|
|
timeout-minutes: 10
|
|
env:
|
|
PR_BODY: "${{ github.event.pull_request.body }}"
|
|
run: |
|
|
brew update
|
|
brew install ninja
|
|
- name: Build & Run
|
|
run: |
|
|
./tests/toranj/build.sh posix-15.4
|
|
|
|
upload-coverage:
|
|
needs:
|
|
- toranj-cli
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
- name: Bootstrap
|
|
timeout-minutes: 10
|
|
run: |
|
|
sudo apt-get --no-install-recommends install -y lcov
|
|
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
path: coverage/
|
|
pattern: cov-*
|
|
merge-multiple: true
|
|
- name: Combine Coverage
|
|
run: |
|
|
script/test combine_coverage
|
|
- name: Upload Coverage
|
|
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
with:
|
|
files: final.info
|
|
fail_ci_if_error: ${{ github.repository == 'openthread/openthread' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }}
|