Skip to content

Commit d63ec6f

Browse files
pionbotstv0g
authored andcommittedMay 5, 2023
Update CI configs to v0.10.7
Update lint scripts and CI configs.
1 parent d88efbb commit d63ec6f

16 files changed

+87
-7
lines changed
 

‎.github/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
2+
# SPDX-License-Identifier: MIT
3+
14
.goassets

‎.github/fetch-scripts.sh

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
set -eu
1315

‎.github/install-hooks.sh

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
SCRIPT_PATH="$(realpath "$(dirname "$0")")"
1315

‎.github/workflows/codeql-analysis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: CodeQL
1315

‎.github/workflows/generate-authors.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: Generate Authors
1315

‎.github/workflows/lint.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: Lint
1315
on:

‎.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: Release
1315
on:
@@ -19,4 +21,4 @@ jobs:
1921
release:
2022
uses: pion/.goassets/.github/workflows/release.reusable.yml@master
2123
with:
22-
go-version: '1.19' # auto-update/latest-go-version
24+
go-version: '1.20' # auto-update/latest-go-version

‎.github/workflows/renovate-go-sum-fix.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: Fix go.sum
1315
on:

‎.github/workflows/reuse.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# DO NOT EDIT THIS FILE
3+
#
4+
# It is automatically copied from https://github.com/pion/.goassets repository.
5+
# If this repository should have package specific CI config,
6+
# remove the repository name from .goassets/.github/workflows/assets-sync.yml.
7+
#
8+
# If you want to update the shared CI config, send a PR to
9+
# https://github.com/pion/.goassets instead of this repository.
10+
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
13+
14+
name: REUSE Compliance Check
15+
16+
on:
17+
push:
18+
pull_request:
19+
20+
jobs:
21+
lint:
22+
uses: pion/.goassets/.github/workflows/reuse.reusable.yml@master

‎.github/workflows/test.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: Test
1315
on:
@@ -21,7 +23,7 @@ jobs:
2123
uses: pion/.goassets/.github/workflows/test.reusable.yml@master
2224
strategy:
2325
matrix:
24-
go: ['1.19', '1.18'] # auto-update/supported-go-version-list
26+
go: ['1.20', '1.19'] # auto-update/supported-go-version-list
2527
fail-fast: false
2628
with:
2729
go-version: ${{ matrix.go }}
@@ -30,12 +32,12 @@ jobs:
3032
uses: pion/.goassets/.github/workflows/test-i386.reusable.yml@master
3133
strategy:
3234
matrix:
33-
go: ['1.19', '1.18'] # auto-update/supported-go-version-list
35+
go: ['1.20', '1.19'] # auto-update/supported-go-version-list
3436
fail-fast: false
3537
with:
3638
go-version: ${{ matrix.go }}
3739

3840
test-wasm:
3941
uses: pion/.goassets/.github/workflows/test-wasm.reusable.yml@master
4042
with:
41-
go-version: '1.19' # auto-update/latest-go-version
43+
go-version: '1.20' # auto-update/latest-go-version

‎.github/workflows/tidy-check.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# If you want to update the shared CI config, send a PR to
99
# https://github.com/pion/.goassets instead of this repository.
1010
#
11+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
12+
# SPDX-License-Identifier: MIT
1113

1214
name: Go mod tidy
1315
on:
@@ -20,4 +22,4 @@ jobs:
2022
tidy:
2123
uses: pion/.goassets/.github/workflows/tidy-check.reusable.yml@master
2224
with:
23-
go-version: '1.19' # auto-update/latest-go-version
25+
go-version: '1.20' # auto-update/latest-go-version

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
2+
# SPDX-License-Identifier: MIT
3+
14
### JetBrains IDE ###
25
#####################
36
.idea/

‎.golangci.yml

+24-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
2+
# SPDX-License-Identifier: MIT
3+
14
linters-settings:
25
govet:
36
check-shadowing: true
@@ -10,7 +13,15 @@ linters-settings:
1013
modules:
1114
- github.com/pkg/errors:
1215
recommendations:
13-
- errors
16+
- errors
17+
forbidigo:
18+
forbid:
19+
- Fatal(f|ln)?$
20+
- ^fmt.Print(f|ln)?$
21+
- ^log.Print(f|ln)?$
22+
- ^os.Exit$
23+
- ^panic$
24+
- ^print(ln)?$
1425

1526
linters:
1627
enable:
@@ -29,6 +40,7 @@ linters:
2940
- errorlint # errorlint is a linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13.
3041
- exhaustive # check exhaustiveness of enum switch statements
3142
- exportloopref # checks for pointers to enclosing loop variables
43+
- forbidigo # Forbids identifiers
3244
- forcetypeassert # finds forced type assertions
3345
- gci # Gci control golang package import order and make it always deterministic.
3446
- gochecknoglobals # Checks that no globals are present in Go code
@@ -73,7 +85,6 @@ linters:
7385
- containedctx # containedctx is a linter that detects struct contained context.Context field
7486
- cyclop # checks function and package cyclomatic complexity
7587
- exhaustivestruct # Checks if all struct's fields are initialized
76-
- forbidigo # Forbids identifiers
7788
- funlen # Tool for detection of long functions
7889
- gocyclo # Computes and checks the cyclomatic complexity of functions
7990
- godot # Check if comments end in a period
@@ -105,12 +116,23 @@ issues:
105116
- path: _test\.go
106117
linters:
107118
- gocognit
119+
- forbidigo
108120

109121
# Allow complex main function in examples
110122
- path: examples
111123
text: "of func `main` is high"
112124
linters:
113125
- gocognit
126+
127+
# Allow forbidden identifiers in examples
128+
- path: examples
129+
linters:
130+
- forbidigo
131+
132+
# Allow forbidden identifiers in CLI commands
133+
- path: cmd
134+
linters:
135+
- forbidigo
114136

115137
run:
116138
skip-dirs-use-default: false

‎.goreleaser.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
2+
# SPDX-License-Identifier: MIT
3+
14
builds:
25
- skip: true

‎.reuse/dep5

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: Pion
3+
Source: https://github.com/pion/
4+
5+
Files: README.md AUTHORS.txt renovate.json
6+
Copyright: 2023 The Pion community <https://pion.ly>
7+
License: MIT

‎codecov.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
#
44
# It is automatically copied from https://github.com/pion/.goassets repository.
55
#
6+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
7+
# SPDX-License-Identifier: MIT
68

79
coverage:
810
status:

0 commit comments

Comments
 (0)
Please sign in to comment.