diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76a59237a..f8b218da6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,7 +75,7 @@ jobs: - name: Run SRS regression-test run: | docker run --rm srs:test bash -c 'make && \ - ./objs/srs -c conf/regression-test.conf && \ + ./objs/srs -c conf/regression-test.conf && sleep 10 && \ cd 3rdparty/srs-bench && make && ./objs/srs_test -test.v' runs-on: ubuntu-20.04 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b316891f6..272abadfd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -197,7 +197,7 @@ jobs: # For regression-test - name: Run SRS regression-test run: | - docker run --rm srs:test bash -c './objs/srs -c conf/regression-test.conf && \ + docker run --rm srs:test bash -c './objs/srs -c conf/regression-test.conf && sleep 10 && \ cd 3rdparty/srs-bench && (./objs/srs_test -test.v || (cat ../../objs/srs.log && exit 1)) && \ ./objs/srs_gb28181_test -test.v' runs-on: ubuntu-20.04