Skip to content

Commit 4d16d78

Browse files
authored
Merge branch 'master' into chore/add-failing-transceiver-stop-test
2 parents 1ac8c71 + fc3521e commit 4d16d78

File tree

351 files changed

+8768
-2564
lines changed

Some content is hidden

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

351 files changed

+8768
-2564
lines changed

.codacy.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
---
2+
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
3+
# SPDX-License-Identifier: MIT
4+
25
exclude_paths:
36
- examples/examples.json

.github/.ci.conf

Lines changed: 3 additions & 0 deletions
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
GO_JS_WASM_EXEC=${PWD}/test-wasm/go_js_wasm_exec
25
TEST_EXTRA_ARGS="-tags quic"
36
GOLANGCI_LINT_EXRA_ARGS="--build-tags quic"

.github/.gitignore

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

.github/fetch-scripts.sh

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/bin/sh
2+
3+
#
4+
# DO NOT EDIT THIS FILE
5+
#
6+
# It is automatically copied from https://github.com/pion/.goassets repository.
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+
set -eu
15+
16+
SCRIPT_PATH="$(realpath "$(dirname "$0")")"
17+
GOASSETS_PATH="${SCRIPT_PATH}/.goassets"
18+
19+
GOASSETS_REF=${GOASSETS_REF:-master}
20+
21+
if [ -d "${GOASSETS_PATH}" ]; then
22+
if ! git -C "${GOASSETS_PATH}" diff --exit-code; then
23+
echo "${GOASSETS_PATH} has uncommitted changes" >&2
24+
exit 1
25+
fi
26+
git -C "${GOASSETS_PATH}" fetch origin
27+
git -C "${GOASSETS_PATH}" checkout ${GOASSETS_REF}
28+
git -C "${GOASSETS_PATH}" reset --hard origin/${GOASSETS_REF}
29+
else
30+
git clone -b ${GOASSETS_REF} https://github.com/pion/.goassets.git "${GOASSETS_PATH}"
31+
fi

.github/generate-authors.sh

Lines changed: 0 additions & 66 deletions
This file was deleted.

.github/hooks/commit-msg.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/hooks/pre-commit.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/hooks/pre-push.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/install-hooks.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
#
44
# DO NOT EDIT THIS FILE
@@ -8,9 +8,13 @@
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

12-
SCRIPT_PATH=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
14+
SCRIPT_PATH="$(realpath "$(dirname "$0")")"
1315

14-
cp "$SCRIPT_PATH/hooks/commit-msg.sh" "$SCRIPT_PATH/../.git/hooks/commit-msg"
15-
cp "$SCRIPT_PATH/hooks/pre-commit.sh" "$SCRIPT_PATH/../.git/hooks/pre-commit"
16-
cp "$SCRIPT_PATH/hooks/pre-push.sh" "$SCRIPT_PATH/../.git/hooks/pre-push"
16+
. ${SCRIPT_PATH}/fetch-scripts.sh
17+
18+
cp "${GOASSETS_PATH}/hooks/commit-msg.sh" "${SCRIPT_PATH}/../.git/hooks/commit-msg"
19+
cp "${GOASSETS_PATH}/hooks/pre-commit.sh" "${SCRIPT_PATH}/../.git/hooks/pre-commit"
20+
cp "${GOASSETS_PATH}/hooks/pre-push.sh" "${SCRIPT_PATH}/../.git/hooks/pre-push"

.github/lint-commit-message.sh

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)