Skip to content

submodule: bump openthread from 03113e8 to b42be4c #1497

submodule: bump openthread from 03113e8 to b42be4c

submodule: bump openthread from 03113e8 to b42be4c #1497

Workflow file for this run

#
# 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: Build
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'openthread/ot-b91' && github.run_id) || github.ref }}
cancel-in-progress: true
jobs:
pretty:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
run: |
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get --no-install-recommends install -y clang-format-14 shellcheck
python3 -m pip install yapf==0.29.0
sudo snap install shfmt
- name: Check
run: |
script/make-pretty check
riscv32-gcc:
name: riscv32-gcc-${{ matrix.gcc_ver }}
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- gcc_ver: 7
gcc_download_url: http://wiki.telink-semi.cn/tools_and_sdk/Tools/IDE/telink_riscv_linux_toolchain.zip
gcc_extract_dir: telink_riscv_linux_toolchain
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
run: |
cd /tmp
sudo dpkg --add-architecture i386
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get --no-install-recommends install -y lib32z1 ninja-build
sudo apt-get install unzip
sudo apt-get install aptitude
sudo aptitude -f install libgcc-s1:i386 -y
sudo aptitude -f install libgcc-s1 -y
sudo apt autoremove
sudo apt install module-assistant
sudo apt install gcc-multilib
sudo apt install g++-multilib
sudo apt-get install libncurses5:i386
wget ${{ matrix.gcc_download_url }} -O gcc-riscv32.zip
unzip gcc-riscv32.zip
- name: Build
run: |
export PATH=/tmp/${{ matrix.gcc_extract_dir }}/nds32le-elf-mculib-v5f/bin:$PATH
script/test