mirror of
https://github.com/ossrs/srs.git
synced 2025-11-24 03:44:02 +08:00
Fix bug for regression test, check process by script.
This commit is contained in:
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@@ -62,8 +62,9 @@ jobs:
|
||||
# For regression-test
|
||||
- name: Run SRS regression-test
|
||||
run: |
|
||||
docker run --rm srs:test bash -c 'make && ./objs/srs -c conf/regression-test.conf && \
|
||||
cd 3rdparty/srs-bench && make && ./objs/srs_test -test.v'
|
||||
docker run --rm srs:test bash -c 'make && \
|
||||
(./objs/srs -c conf/regression-test.conf; ./etc/init.d/srs status) && \
|
||||
cd 3rdparty/srs-bench && make && ./objs/srs_test -test.v'
|
||||
outputs:
|
||||
SRS_TEST_DONE: ok
|
||||
|
||||
|
||||
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
@@ -202,7 +202,10 @@ jobs:
|
||||
run: docker run --rm srs:test bash -c 'make utest && ./objs/srs_utest'
|
||||
# For regression-test
|
||||
- name: Run SRS regression-test
|
||||
run: docker run --rm srs:test bash -c 'make && (./objs/srs -c conf/regression-test.conf; ./etc/init.d/srs status) && cd 3rdparty/srs-bench && make && ./objs/srs_test -test.v'
|
||||
run: |
|
||||
docker run --rm srs:test bash -c 'make && \
|
||||
(./objs/srs -c conf/regression-test.conf; ./etc/init.d/srs status) && \
|
||||
cd 3rdparty/srs-bench && make && ./objs/srs_test -test.v'
|
||||
outputs:
|
||||
SRS_UTEST_DONE: ok
|
||||
|
||||
|
||||
Reference in New Issue
Block a user