Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dispatcher.go] Change log style of push status and unnecessary break - Part 1 of RTEA #357

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4316559
[github-actions] fix pushes do not run CI (#395)
simonlingoogle Oct 21, 2022
abf59e0
[pretty] fix pretty issues (#402)
simonlingoogle Mar 1, 2023
f8f6bd9
Bump wheel from 0.34.2 to 0.38.1 in /pylibs/unittests (#439)
dependabot[bot] Mar 2, 2023
7c2330b
Bump golang.org/x/net from 0.0.0-20201021035429-f5854403a974 to 0.7.0…
dependabot[bot] Mar 2, 2023
e04740e
[github-actions] use go 1.20 (#484)
simonlingoogle Mar 2, 2023
0e55090
[github-actions] migrate to `actions/checkout@v3` (#387)
jwhui Mar 2, 2023
bc8333e
[scripts] add wheel to install_python_libs() (#485)
lmnotran Mar 3, 2023
b8cb656
[github-actions] quote go versions (#487)
simonlingoogle Mar 6, 2023
96e8713
[github-actions] migrate to ubuntu 20.04 from 18.04 (#488)
jwhui Mar 6, 2023
5e145eb
[github-actions] use setup-python@v4 (#493)
simonlingoogle Mar 7, 2023
1c7d3c1
[github-actions] setup-go@v3 (#492)
simonlingoogle Mar 7, 2023
c2c5fbb
[github-actions] use ubuntu 22.04 (#491)
simonlingoogle Mar 7, 2023
d5d0279
[github-actions] upgrade to python 3.9 (#489)
simonlingoogle Mar 7, 2023
3a06692
submodule: bump openthread from `d48799d` to `d2d9aff` (#490)
dependabot[bot] Mar 7, 2023
f0b4d73
[dependabot] reduce frequency to monthly (#494)
simonlingoogle Mar 9, 2023
6a15c15
submodule: bump openthread from `d2d9aff` to `3a688cb` (#495)
dependabot[bot] Mar 9, 2023
890e700
submodule: bump openthread from `d2d9aff` to `1f1a826` (#496)
dependabot[bot] Mar 9, 2023
558c1c4
submodule: bump openthread from `1f1a826` to `fa6824c` (#498)
dependabot[bot] Apr 3, 2023
d672315
style: change log style and unnecessary break
Sep 9, 2022
cd1ac62
style: remove ineffective breaks
Sep 15, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ updates:
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
interval: "monthly"
allow:
- dependency-name: "openthread"
commit-message:
prefix: "submodule"
rebase-strategy: "disabled"
open-pull-requests-limit: 1
assignees:
- "simonlingoogle"
- "jwhui"
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
name: Build

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

jobs:
cancel-previous-runs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -46,13 +49,13 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ 1.17, 1.18 ]
os: [ ubuntu-20.04, macos-11 ]
go: [ "1.17", "1.20" ]
os: [ ubuntu-22.04, macos-12 ]
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build
run: |
./script/install-deps
Expand Down
23 changes: 15 additions & 8 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
name: Develop

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

jobs:
cancel-previous-runs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -48,19 +51,23 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [1.17, 1.18]
python-version: [3.7]
os: [ubuntu-20.04]
go: ["1.17", "1.20"]
python-version: ["3.9"]
os: [ubuntu-22.04]
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build
run: |
docker build -t otns-env -f etc/docker/environment/Dockerfile .
docker run -t -v$PWD:/otns otns-env -c "./script/pack-web"
git diff --quiet
if ! git diff --quiet; then
echo "script/pack-web was not properly executed:"
git diff
exit 1
fi
9 changes: 6 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
name: Docker

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

jobs:
cancel-previous-runs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -42,15 +45,15 @@ jobs:

buildx:
name: buildx-${{ matrix.version }}
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version:
- "environment"
- "playground"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Prepare
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
name: Lint

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

jobs:
cancel-previous-runs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -42,14 +45,14 @@ jobs:

go-lint:
name: Go Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v2
go-version: "1.20"
- uses: actions/checkout@v3
- name: Check pretty
run: |
./script/check-pretty
17 changes: 10 additions & 7 deletions .github/workflows/stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
name: Stress

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

jobs:
cancel-previous-runs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -45,23 +48,23 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
go-version: [1.18]
python-version: ["3.9"]
go-version: ["1.20"]
suite: ["network-forming", "commissioning", "connectivity", "network-latency", "multicast-performance", "otns-performance", "network-limits"]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: |
mkdir -p /home/runner/work/_temp/_github_home
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Stress Test
env:
STRESS_LEVEL: 10
Expand Down
49 changes: 26 additions & 23 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
name: Test

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

jobs:
cancel-previous-runs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
Expand All @@ -46,14 +49,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-11]
os: [ubuntu-22.04, macos-12]
env:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v2
go-version: "1.20"
- uses: actions/checkout@v3
- name: Test
run: |
./script/test go-tests
Expand All @@ -66,19 +69,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
os: [ubuntu-20.04, macos-11]
python-version: ["3.9"]
os: [ubuntu-22.04, macos-12]
env:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: "1.20"
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: |
./script/test py-unittests
Expand All @@ -89,19 +92,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
os: [ubuntu-20.04, macos-11]
python-version: ["3.9"]
os: [ubuntu-22.04, macos-12]
env:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: "1.20"
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run Examples
run: |
./script/test py-examples
Expand All @@ -112,19 +115,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
os: [ubuntu-20.04, macos-11]
python-version: ["3.9"]
os: [ubuntu-22.04, macos-12]
env:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: "1.20"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test
run: |
./script/test signals
3 changes: 3 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
run:
skip-files:
- "web/site/bindata.go"
Loading