Skip to content

Commit 0a3d016

Browse files
committedMar 24, 2021
Initial commit.
0 parents  commit 0a3d016

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+10802
-0
lines changed
 

‎.clang-format

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
Language: Cpp
3+
# BasedOnStyle: LLVM
4+
AccessModifierOffset: -4
5+
AlignAfterOpenBracket: Align
6+
AlignConsecutiveAssignments: true
7+
AlignConsecutiveDeclarations: true
8+
AlignEscapedNewlines: Left
9+
AlignOperands: true
10+
AlignTrailingComments: true
11+
AllowAllParametersOfDeclarationOnNextLine: false
12+
AllowShortBlocksOnASingleLine: false
13+
AllowShortCaseLabelsOnASingleLine: false
14+
AllowShortFunctionsOnASingleLine: InlineOnly
15+
AllowShortIfStatementsOnASingleLine: false
16+
AllowShortLoopsOnASingleLine: true
17+
AlwaysBreakAfterDefinitionReturnType: None
18+
AlwaysBreakAfterReturnType: None
19+
AlwaysBreakBeforeMultilineStrings: false
20+
AlwaysBreakTemplateDeclarations: false
21+
BinPackArguments: true
22+
BinPackParameters: false
23+
BraceWrapping:
24+
AfterCaseLabel: true
25+
AfterClass: true
26+
AfterControlStatement: true
27+
AfterEnum: true
28+
AfterFunction: true
29+
AfterNamespace: false
30+
AfterObjCDeclaration: false
31+
AfterStruct: true
32+
AfterUnion: true
33+
BeforeCatch: false
34+
BeforeElse: true
35+
IndentBraces: false
36+
SplitEmptyFunction: true
37+
SplitEmptyRecord: true
38+
SplitEmptyNamespace: true
39+
BreakBeforeBinaryOperators: None
40+
BreakBeforeBraces: Custom
41+
BreakBeforeInheritanceComma: false
42+
BreakBeforeTernaryOperators: true
43+
BreakConstructorInitializersBeforeComma: false
44+
BreakConstructorInitializers: BeforeComma
45+
BreakAfterJavaFieldAnnotations: false
46+
BreakStringLiterals: true
47+
ColumnLimit: 120
48+
CommentPragmas: '^ IWYU pragma:'
49+
CompactNamespaces: false
50+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
51+
ConstructorInitializerIndentWidth: 4
52+
ContinuationIndentWidth: 4
53+
Cpp11BracedListStyle: true
54+
DerivePointerAlignment: false
55+
DisableFormat: false
56+
ExperimentalAutoDetectBinPacking: false
57+
FixNamespaceComments: true
58+
ForEachMacros:
59+
- foreach
60+
- Q_FOREACH
61+
- BOOST_FOREACH
62+
IncludeCategories:
63+
- Regex: '^<openthread/.*/'
64+
Priority: 4
65+
- Regex: '^<openthread/'
66+
Priority: 3
67+
- Regex: '^<'
68+
Priority: 2
69+
- Regex: '^".*/'
70+
Priority: 5
71+
- Regex: '^"'
72+
Priority: 1
73+
IncludeIsMainRegex: '(Test)?$'
74+
IndentCaseLabels: false
75+
IndentWidth: 4
76+
IndentWrappedFunctionNames: false
77+
JavaScriptQuotes: Leave
78+
JavaScriptWrapImports: true
79+
KeepEmptyLinesAtTheStartOfBlocks: false
80+
MacroBlockBegin: ''
81+
MacroBlockEnd: ''
82+
MaxEmptyLinesToKeep: 1
83+
NamespaceIndentation: None
84+
ObjCBlockIndentWidth: 2
85+
ObjCSpaceAfterProperty: false
86+
ObjCSpaceBeforeProtocolList: true
87+
PenaltyBreakAssignment: 2
88+
PenaltyBreakBeforeFirstCallParameter: 19
89+
PenaltyBreakComment: 300
90+
PenaltyBreakFirstLessLess: 120
91+
PenaltyBreakString: 1000
92+
PenaltyExcessCharacter: 1000000
93+
PenaltyReturnTypeOnItsOwnLine: 1000
94+
PointerAlignment: Right
95+
ReflowComments: true
96+
SortIncludes: true
97+
SortUsingDeclarations: true
98+
SpaceAfterCStyleCast: false
99+
SpaceAfterTemplateKeyword: true
100+
SpaceBeforeAssignmentOperators: true
101+
SpaceBeforeParens: ControlStatements
102+
SpaceInEmptyParentheses: false
103+
SpacesBeforeTrailingComments: 1
104+
SpacesInAngles: false
105+
SpacesInContainerLiterals: true
106+
SpacesInCStyleCastParentheses: false
107+
SpacesInParentheses: false
108+
SpacesInSquareBrackets: false
109+
Standard: Cpp11
110+
TabWidth: 4
111+
UseTab: Never
112+
...
113+

‎.github/workflows/build.yml

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
#
2+
# Copyright (c) 2021, The OpenThread Authors.
3+
# All rights reserved.
4+
#
5+
# Redistribution and use in source and binary forms, with or without
6+
# modification, are permitted provided that the following conditions are met:
7+
# 1. Redistributions of source code must retain the above copyright
8+
# notice, this list of conditions and the following disclaimer.
9+
# 2. Redistributions in binary form must reproduce the above copyright
10+
# notice, this list of conditions and the following disclaimer in the
11+
# documentation and/or other materials provided with the distribution.
12+
# 3. Neither the name of the copyright holder nor the
13+
# names of its contributors may be used to endorse or promote products
14+
# derived from this software without specific prior written permission.
15+
#
16+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26+
# POSSIBILITY OF SUCH DAMAGE.
27+
#
28+
29+
name: Build
30+
31+
on: [push, pull_request]
32+
33+
jobs:
34+
35+
cancel-previous-runs:
36+
runs-on: ubuntu-20.04
37+
steps:
38+
- uses: rokroskar/workflow-run-cleanup-action@master
39+
env:
40+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
41+
if: "github.ref != 'refs/heads/main'"
42+
43+
pretty:
44+
runs-on: ubuntu-20.04
45+
steps:
46+
- uses: actions/checkout@v2
47+
with:
48+
submodules: true
49+
- name: Bootstrap
50+
run: |
51+
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
52+
sudo apt-get --no-install-recommends install -y clang-format-9 shellcheck
53+
python3 -m pip install yapf==0.29.0
54+
sudo snap install shfmt
55+
- name: Check
56+
run: |
57+
script/make-pretty check
58+
59+
gcc-arm-none-eabi:
60+
name: gcc-arm-none-eabi-${{ matrix.gcc_ver }}
61+
runs-on: ubuntu-18.04
62+
strategy:
63+
matrix:
64+
include:
65+
- gcc_ver: 4
66+
gcc_download_url: https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q3-update/+download/gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2
67+
gcc_extract_dir: gcc-arm-none-eabi-4_9-2015q3
68+
- gcc_ver: 5
69+
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/5_4-2016q3/gcc-arm-none-eabi-5_4-2016q3-20160926-linux.tar.bz2
70+
gcc_extract_dir: gcc-arm-none-eabi-5_4-2016q3
71+
- gcc_ver: 6
72+
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2
73+
gcc_extract_dir: gcc-arm-none-eabi-6-2017-q2-update
74+
- gcc_ver: 7
75+
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2
76+
gcc_extract_dir: gcc-arm-none-eabi-7-2018-q2-update
77+
- gcc_ver: 9
78+
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2
79+
gcc_extract_dir: gcc-arm-none-eabi-9-2019-q4-major
80+
steps:
81+
- uses: actions/checkout@v2
82+
with:
83+
submodules: true
84+
- name: Bootstrap
85+
run: |
86+
cd /tmp
87+
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
88+
sudo apt-get --no-install-recommends install -y lib32z1 ninja-build
89+
wget ${{ matrix.gcc_download_url }} -O gcc-arm.tar.bz2
90+
tar xjf gcc-arm.tar.bz2
91+
# use the minimal required cmake version
92+
sudo pip3 install --system -U cmake==3.10.3
93+
cmake --version | grep 3.10.3
94+
- name: Build
95+
run: |
96+
export PATH=/tmp/${{ matrix.gcc_extract_dir }}/bin:$PATH
97+
script/test qpg6095
98+
script/test qpg6100
99+
100+
gcc-arm-none-linux-gnueabihf:
101+
name: gcc-arm-none-linux-gnueabihf-${{ matrix.gcc_ver }}
102+
runs-on: ubuntu-18.04
103+
strategy:
104+
matrix:
105+
include:
106+
- gcc_ver: 8
107+
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu-a/8.3-2019.03/binrel/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf.tar.xz
108+
gcc_extract_dir: gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf
109+
steps:
110+
- uses: actions/checkout@v2
111+
with:
112+
submodules: true
113+
- name: Bootstrap
114+
run: |
115+
cd /tmp
116+
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
117+
sudo apt-get --no-install-recommends install -y lib32z1 ninja-build
118+
wget ${{ matrix.gcc_download_url }} -O gcc-arm.tar.xz
119+
tar xf gcc-arm.tar.xz
120+
# use the minimal required cmake version
121+
sudo pip3 install --system -U cmake==3.10.3
122+
cmake --version | grep 3.10.3
123+
- name: Build
124+
run: |
125+
export PATH=/tmp/${{ matrix.gcc_extract_dir }}/bin:$PATH
126+
script/test gp712
127+
script/test qpg7015m

0 commit comments

Comments
 (0)