Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/openthread/ot-br-posix into…
Browse files Browse the repository at this point in the history
… pr/593
  • Loading branch information
bukepo committed May 13, 2021
2 parents 7a4769c + 6f7fd7c commit 50baa34
Show file tree
Hide file tree
Showing 413 changed files with 10,812 additions and 39,578 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2020, The OpenThread Authors.
# Copyright (c) 2021, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand All @@ -26,9 +26,15 @@
# POSSIBILITY OF SUCH DAMAGE.
#


install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/repo/angular-material.min.js
DESTINATION ${OTBR_WEB_DATADIR}/frontend/res/js)

install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/repo/angular-material.min.css
DESTINATION ${OTBR_WEB_DATADIR}/frontend/res/css)
version: 2
updates:
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
allow:
- dependency-name: "third_party/openthread/repo"
commit-message:
prefix: "submodule"
rebase-strategy: "disabled"
open-pull-requests-limit: 1
118 changes: 118 additions & 0 deletions .github/workflows/border_router.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
#
# Copyright (c) 2021, 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: Border Router

on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- 'main'

jobs:

cancel-previous-runs:
runs-on: ubuntu-20.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "github.ref != 'refs/heads/main'"

border-router:
runs-on: ubuntu-20.04

strategy:
matrix:
include:
- name: "Border Router"
otbr_options: "-DOT_TREL=OFF -DOT_MLR=ON -DOTBR_COVERAGE=ON -DOT_SRP_SERVER=ON -DOT_ECDSA=ON -DOT_SERVICE=ON -DOTBR_DUA_ROUTING=OFF"
border_routing: 1
cert_scripts: ./tests/scripts/thread-cert/border_router/*.py
- name: "Backbone Router"
otbr_options: "-DOT_TREL=OFF -DOT_DUA=ON -DOT_MLR=ON -DOTBR_COVERAGE=ON -DOT_SRP_SERVER=ON -DOT_ECDSA=ON -DOT_SERVICE=ON -DOTBR_DUA_ROUTING=ON"
border_routing: 0
cert_scripts: ./tests/scripts/thread-cert/backbone/*.py
name: ${{ matrix.name }}
env:
PACKET_VERIFICATION: 1
THREAD_VERSION: 1.2
VIRTUAL_TIME: 0
PYTHONUNBUFFERED: 1
REFERENCE_DEVICE: 1
OTBR_COVERAGE: 1
READLINE: readline
INTER_OP: 0
INTER_OP_BBR: 0
BORDER_ROUTING: ${{ matrix.border_routing }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build OTBR Docker Image
run: |
# We need the `-DOT_SRP_SERVER=ON` option because the `bbr_5_11_01.py` script is referring SRP server.
# This should be fixed by enhancing the test script to handle SRP server situations properly.
otbr_options="${{ matrix.otbr_options }}"
otbr_image_name="otbr-ot12-backbone-ci"
docker build -t "${otbr_image_name}" -f etc/docker/Dockerfile . \
--build-arg BORDER_ROUTING=${{ matrix.border_routing }} \
--build-arg INFRA_IF_NAME=eth0 \
--build-arg BACKBONE_ROUTER=1 \
--build-arg REFERENCE_DEVICE=1 \
--build-arg OT_BACKBONE_CI=1 \
--build-arg NAT64=0 \
--build-arg OTBR_OPTIONS="${otbr_options}"
- name: Bootstrap OpenThread Test
run: |
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get --no-install-recommends install -y python3-setuptools python3-wheel ninja-build socat nodejs npm
python3 -m pip install -r third_party/openthread/repo/tests/scripts/thread-cert/requirements.txt
- name: Build OpenThread
run: |
(cd third_party/openthread/repo && ./script/test build)
- name: Get Thread-Wireshark
run: |
(cd third_party/openthread/repo && ./script/test get_thread_wireshark)
- name: Run Test
run: |
export CI_ENV="$(bash <(curl -s https://codecov.io/env)) -e GITHUB_ACTIONS -e OTBR_COVERAGE"
echo "CI_ENV=${CI_ENV}"
(cd third_party/openthread/repo && sudo -E ./script/test cert_suite ${{ matrix.cert_scripts }} || (sudo chmod a+r *.log *.json *.pcap && false))
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: thread-1-2-backbone-results
path: |
third_party/openthread/repo/*.pcap
third_party/openthread/repo/*.json
third_party/openthread/repo/*.log
- name: Codecov
uses: codecov/codecov-action@v1
122 changes: 41 additions & 81 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,62 @@
#
## 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.
##
# 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: Build

on: [push, pull_request]
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- 'main'

jobs:

cancel-previous-runs:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "github.ref != 'refs/heads/master'"
if: "github.ref != 'refs/heads/main'"

pretty:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Bootstrap
run: sudo BUILD_TARGET=pretty-check tests/scripts/bootstrap.sh
run: BUILD_TARGET=pretty-check tests/scripts/bootstrap.sh
- name: Check
run: script/make-pretty check

android-check:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
mdns: ["mDNSResponder", ""]
Expand All @@ -62,12 +68,12 @@ jobs:
env:
OTBR_MDNS: ${{ matrix.mdns }}
run: >
docker run --rm -v $PWD:/build/ot-br-posix openthread/android-trusty bash -c
docker run --rm -v $PWD:/build/ot-br-posix -v $PWD/third_party/openthread/repo:/build/external/openthread openthread/android-trusty bash -c
"BUILD_TARGET=android-check ot-br-posix/tests/scripts/bootstrap.sh && \
ot-br-posix/tests/scripts/check-android-build"
check:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
mdns: ["mDNSResponder", "avahi"]
Expand Down Expand Up @@ -107,7 +113,7 @@ jobs:
uses: codecov/codecov-action@v1

script-check:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
env:
BUILD_TARGET: script-check
OTBR_COVERAGE: 1
Expand All @@ -123,7 +129,7 @@ jobs:
uses: codecov/codecov-action@v1

scan-build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
env:
BUILD_TARGET: scan-build
CC: clang
Expand Down Expand Up @@ -152,49 +158,3 @@ jobs:
cmake --version | grep 3.10.3
- name: Build
run: script/test package

thread-1-2-backbone:
runs-on: ubuntu-18.04
env:
PACKET_VERIFICATION: 1
REFERENCE_DEVICE: 1
THREAD_VERSION: 1.2
INTER_OP: 1
VIRTUAL_TIME: 0
PYTHONUNBUFFERED: 1
OTBR_COVERAGE: 1
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build OTBR Docker Image
run: |
otbr_options="-DOTBR_BACKBONE_ROUTER=ON -DOT_DUA=ON -DOT_MLR=ON -DOTBR_COVERAGE=ON"
otbr_image_name="otbr-ot12-backbone-ci"
docker build -t "${otbr_image_name}" -f etc/docker/Dockerfile . --build-arg REFERENCE_DEVICE=1 --build-arg OT_BACKBONE_CI=1 --build-arg OTBR_OPTIONS="${otbr_options}"
- name: Bootstrap OpenThread Test
run: |
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get --no-install-recommends install -y python3-setuptools python3-wheel ninja-build socat
python3 -m pip install -r third_party/openthread/repo/tests/scripts/thread-cert/requirements.txt
- name: Build OpenThread
run: |
(cd third_party/openthread/repo && ./script/test build)
- name: Get Thread-Wireshark
run: |
(cd third_party/openthread/repo && ./script/test get_thread_wireshark)
- name: Run Test
run: |
export CI_ENV="$(bash <(curl -s https://codecov.io/env)) -e GITHUB_ACTIONS -e OTBR_COVERAGE"
echo "CI_ENV=${CI_ENV}"
(cd third_party/openthread/repo && sudo -E ./script/test cert_bbr ./tests/scripts/thread-cert/backbone/*.py || (sudo chmod a+r *.log *.json *.pcap && false))
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: thread-1-2-backbone-results
path: |
third_party/openthread/repo/*.pcap
third_party/openthread/repo/*.json
third_party/openthread/repo/*.log
- name: Codecov
uses: codecov/codecov-action@v1

0 comments on commit 50baa34

Please sign in to comment.