mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
For the DJI M30, there is a bug where empty NALU packets with a size of zero are causing issues with HLS streaming. This bug leads to random unpublish events due to the SRS disconnecting the connection for the HLS module when it fails to handle empty NALU packets. To address this bug, we have patched the system to ignore any empty NALU packets with a size of zero. Additionally, we have created a tool in the srs-bench to replay pcapng files captured by tcpdump or Wireshark. We have also added utest using mprotect and asan to detect any memory corruption. It is important to note that this bug has been fixed in versions 4.0.2716477f31004
and 5.0.170939f6b484b
. This patch specifically addresses the issue in SRS 6.0. Please be aware that there is another commit related to this bug that partially fixes the issue but still leaves a small problem for asan to detect memory corruption. This commit,577cd299e1
, only ignores empty NALU packets but still reads beyond the memory. --------- Co-authored-by: chundonglinlin <chundonglinlin@163.com>
326 lines
13 KiB
YAML
326 lines
13 KiB
YAML
name: "Test"
|
|
|
|
# @see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags
|
|
on: [push, pull_request]
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
# The dependency graph:
|
|
# test(6m)
|
|
# multiple-arch-armv7(13m)
|
|
# multiple-arch-aarch64(7m)
|
|
# cygwin64-cache(1m)
|
|
# cygwin64(6m) - Must depends on cygwin64-cache.
|
|
# fast(0s) - To limit all fastly run jobs after slow jobs.
|
|
# build-centos7(3m)
|
|
# build-ubuntu16(3m)
|
|
# build-ubuntu18(2m)
|
|
# build-ubuntu20(2m)
|
|
# build-cross-arm(3m)
|
|
# build-cross-aarch64(3m)
|
|
# multiple-arch-amd64(2m)
|
|
# coverage(3m)
|
|
|
|
jobs:
|
|
cygwin64-cache:
|
|
name: cygwin64-cache
|
|
steps:
|
|
- name: Download Cache for Cygwin
|
|
run: |
|
|
echo "Generate convert.sh" &&
|
|
echo "for file in \$(find objs -type l); do" > convert.sh &&
|
|
echo " REAL=\$(readlink -f \$file) &&" >> convert.sh &&
|
|
echo " echo \"convert \$file to \$REAL\" &&" >> convert.sh &&
|
|
echo " rm -rf \$file &&" >> convert.sh &&
|
|
echo " cp -r \$REAL \$file" >> convert.sh &&
|
|
echo "done" >> convert.sh &&
|
|
cat convert.sh &&
|
|
docker run --rm -v $(pwd):/srs -w /usr/local/srs-cache/srs/trunk ossrs/srs:cygwin64-cache \
|
|
bash -c "bash /srs/convert.sh && tar cf /srs/objs.tar.bz2 objs" &&
|
|
pwd && du -sh *
|
|
##################################################################################################################
|
|
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
|
with:
|
|
name: srs-cache
|
|
path: objs.tar.bz2
|
|
retention-days: 1
|
|
runs-on: ubuntu-20.04
|
|
|
|
cygwin64:
|
|
name: cygwin64
|
|
needs:
|
|
- cygwin64-cache
|
|
steps:
|
|
# See https://github.com/cygwin/cygwin-install-action#parameters
|
|
# Note that https://github.com/egor-tensin/setup-cygwin fails to install packages.
|
|
- name: Setup Cygwin
|
|
uses: cygwin/cygwin-install-action@db475590d56881c6cef7b3f96f6f3dd9532ea1f4 # master
|
|
with:
|
|
platform: x86_64
|
|
packages: bash make gcc-g++ cmake automake patch pkg-config tcl unzip
|
|
install-dir: C:\cygwin64
|
|
##################################################################################################################
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
##################################################################################################################
|
|
# Note that we must download artifact after checkout code, because it will change the files in workspace.
|
|
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
|
|
with:
|
|
name: srs-cache
|
|
- uses: geekyeggo/delete-artifact@54ab544f12cdb7b71613a16a2b5a37a9ade990af # v2.0.0
|
|
with:
|
|
name: srs-cache
|
|
##################################################################################################################
|
|
- name: Build and test SRS
|
|
env:
|
|
SHELLOPTS: igncr
|
|
SRS_WORKSPACE: ${{ github.workspace }}
|
|
shell: C:\cygwin64\bin\bash.exe --login '{0}'
|
|
run: |
|
|
WORKDIR=$(cygpath -u $SRS_WORKSPACE) && export PATH=/usr/bin:/usr/local/bin && cd ${WORKDIR} &&
|
|
pwd && rm -rf /usr/local/srs-cache && mkdir -p /usr/local/srs-cache/srs/trunk && ls -lh &&
|
|
tar xf objs.tar.bz2 -C /usr/local/srs-cache/srs/trunk/ && du -sh /usr/local/srs-cache/srs/trunk/* &&
|
|
cd ${WORKDIR}/trunk && ./configure --h265=on --gb28181=on --utest=on && ls -lh && du -sh * && du -sh objs/* &&
|
|
cd ${WORKDIR}/trunk && make utest && ./objs/srs_utest
|
|
runs-on: windows-latest
|
|
|
|
build-centos7:
|
|
name: build-centos7
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# Build for CentOS 7
|
|
- name: Build on CentOS7, baseline
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target centos7-baseline .
|
|
- name: Build on CentOS7, with all features
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target centos7-all .
|
|
- name: Build on CentOS7, without WebRTC
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target centos7-no-webrtc .
|
|
- name: Build on CentOS7, without ASM
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target centos7-no-asm .
|
|
- name: Build on CentOS7, C++98, no FFmpeg
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target centos7-ansi-no-ffmpeg .
|
|
runs-on: ubuntu-20.04
|
|
|
|
build-ubuntu16:
|
|
name: build-ubuntu16
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# Build for Ubuntu16
|
|
- name: Build on Ubuntu16, baseline
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu16-baseline .
|
|
- name: Build on Ubuntu16, with all features
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu16-all .
|
|
runs-on: ubuntu-20.04
|
|
|
|
build-ubuntu18:
|
|
name: build-ubuntu18
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# Build for Ubuntu18
|
|
- name: Build on Ubuntu18, baseline
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu18-baseline .
|
|
- name: Build on Ubuntu18, with all features
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu18-all .
|
|
runs-on: ubuntu-20.04
|
|
|
|
build-ubuntu20:
|
|
name: build-ubuntu20
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# Build for Ubuntu20
|
|
- name: Build on Ubuntu20, baseline
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-baseline .
|
|
- name: Build on Ubuntu20, with all features
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-all .
|
|
runs-on: ubuntu-20.04
|
|
|
|
build-cross-arm:
|
|
name: build-cross-arm
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
- name: Cross Build for ARMv7 on Ubuntu16
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu16-cross-armv7 .
|
|
- name: Cross Build for ARMv7 on Ubuntu20
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-cross-armv7 .
|
|
runs-on: ubuntu-20.04
|
|
|
|
build-cross-aarch64:
|
|
name: build-cross-aarch64
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
- name: Cross Build for AARCH64 on Ubuntu16
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu16-cross-aarch64 .
|
|
- name: Cross Build for AARCH64 on Ubuntu20
|
|
run: DOCKER_BUILDKIT=1 docker build -f trunk/Dockerfile.builds --target ubuntu20-cross-aarch64 .
|
|
runs-on: ubuntu-20.04
|
|
|
|
test:
|
|
name: utest-regression-blackbox-test
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# Tests
|
|
- name: Build test image
|
|
run: docker build --tag srs:test --build-arg MAKEARGS='-j2' -f trunk/Dockerfile.test .
|
|
# For blackbox-test
|
|
- name: Run SRS blackbox-test
|
|
run: |
|
|
#docker run --rm -w /srs/trunk/3rdparty/srs-bench srs:test ./objs/srs_blackbox_test -test.v \
|
|
# -test.run 'TestFast_RtmpPublish_DvrFlv_Basic' -srs-log -srs-stdout srs-ffmpeg-stderr -srs-dvr-stderr \
|
|
# -srs-ffprobe-stdout
|
|
docker run --rm -w /srs/trunk/3rdparty/srs-bench srs:test \
|
|
./objs/srs_blackbox_test -test.v -test.run '^TestFast' -test.parallel 64
|
|
docker run --rm -w /srs/trunk/3rdparty/srs-bench srs:test \
|
|
./objs/srs_blackbox_test -test.v -test.run '^TestSlow' -test.parallel 4
|
|
# For utest
|
|
- name: Run SRS utest
|
|
run: docker run --rm srs:test ./objs/srs_utest
|
|
# For regression-test
|
|
- name: Run SRS regression-test
|
|
run: |
|
|
docker run --rm srs:test bash -c './objs/srs -c conf/regression-test.conf && \
|
|
cd 3rdparty/srs-bench && ./objs/srs_test -test.v && ./objs/srs_gb28181_test -test.v'
|
|
runs-on: ubuntu-20.04
|
|
|
|
coverage:
|
|
name: coverage
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# Tests
|
|
- name: Build coverage image
|
|
run: docker build --tag srs:cov --build-arg MAKEARGS='-j2' -f trunk/Dockerfile.cov .
|
|
# For coverage
|
|
- name: Run SRS covergae
|
|
if: ${{ startsWith(github.ref, 'refs/heads/') || startsWith(github.ref, 'refs/pull/') }}
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
run: |
|
|
# The hash of commit.
|
|
SRS_SHA=${{ github.sha }}
|
|
# Note that the root of SRS, must contains .git, for report fixing.
|
|
SRS_PROJECT=/srs
|
|
# The github.ref is, for example, refs/heads/develop
|
|
SRS_BRANCH=$(echo ${{ github.ref }}| awk -F 'refs/heads/' '{print $2}'| awk -F '/' '{print $1}')
|
|
# The github.ref is, for example, refs/pull/2536/merge
|
|
SRS_PR=$(echo ${{ github.ref }}| awk -F 'refs/pull/' '{print $2}'| awk -F '/' '{print $1}')
|
|
#
|
|
echo "For github.ref=${{ github.ref }}, github.sha=${{ github.sha }}"
|
|
echo "SRS_BRANCH=$SRS_BRANCH, SRS_PR=$SRS_PR, SRS_SHA=$SRS_SHA, SRS_PROJECT=$SRS_PROJECT"
|
|
docker run --rm --env CODECOV_TOKEN=$CODECOV_TOKEN --env SRS_BRANCH=$SRS_BRANCH \
|
|
--env SRS_PR=$SRS_PR --env SRS_SHA=$SRS_SHA --env SRS_PROJECT=$SRS_PROJECT \
|
|
srs:cov bash -c './objs/srs_utest && bash auto/codecov.sh'
|
|
#
|
|
runs-on: ubuntu-20.04
|
|
|
|
multiple-arch-armv7:
|
|
name: multiple-arch-armv7
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# See https://github.com/crazy-max/ghaction-docker-buildx#moved-to-docker-organization
|
|
# https://github.com/docker/setup-qemu-action
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2.1.0
|
|
# https://github.com/docker/setup-buildx-action
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325 # v2.2.1
|
|
- name: Build multiple archs image
|
|
run: |
|
|
docker buildx build --platform linux/arm/v7 \
|
|
--output "type=image,push=false" \
|
|
--build-arg IMAGE=ossrs/srs:ubuntu20-cache \
|
|
--build-arg INSTALLDEPENDS="NO" \
|
|
-f Dockerfile .
|
|
runs-on: ubuntu-20.04
|
|
|
|
multiple-arch-aarch64:
|
|
name: multiple-arch-aarch64
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# See https://github.com/crazy-max/ghaction-docker-buildx#moved-to-docker-organization
|
|
# https://github.com/docker/setup-qemu-action
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2.1.0
|
|
# https://github.com/docker/setup-buildx-action
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325 # v2.2.1
|
|
- name: Build multiple archs image
|
|
run: |
|
|
docker buildx build --platform linux/arm64/v8 \
|
|
--output "type=image,push=false" \
|
|
--build-arg IMAGE=ossrs/srs:ubuntu20-cache \
|
|
--build-arg INSTALLDEPENDS="NO" \
|
|
-f Dockerfile .
|
|
runs-on: ubuntu-20.04
|
|
|
|
multiple-arch-amd64:
|
|
name: multiple-arch-amd64
|
|
needs:
|
|
- fast
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
# See https://github.com/crazy-max/ghaction-docker-buildx#moved-to-docker-organization
|
|
# https://github.com/docker/setup-qemu-action
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 # v2.1.0
|
|
# https://github.com/docker/setup-buildx-action
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325 # v2.2.1
|
|
- name: Build multiple archs image
|
|
run: |
|
|
docker buildx build --platform linux/amd64 \
|
|
--output "type=image,push=false" \
|
|
--build-arg IMAGE=ossrs/srs:ubuntu20-cache \
|
|
-f Dockerfile .
|
|
runs-on: ubuntu-20.04
|
|
|
|
fast:
|
|
name: fast
|
|
needs:
|
|
- cygwin64-cache
|
|
steps:
|
|
- run: echo 'Start fast jobs'
|
|
runs-on: ubuntu-20.04
|
|
|
|
test-done:
|
|
needs:
|
|
- cygwin64
|
|
- coverage
|
|
- test
|
|
- build-centos7
|
|
- build-ubuntu16
|
|
- build-ubuntu18
|
|
- build-ubuntu20
|
|
- build-cross-arm
|
|
- build-cross-aarch64
|
|
- multiple-arch-armv7
|
|
- multiple-arch-aarch64
|
|
- multiple-arch-amd64
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- run: echo 'All done'
|
|
|