1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Fix bug for regression test, check process by script.

This commit is contained in:
winlin 2022-11-20 20:07:21 +08:00
parent b9284b6cc6
commit 05209eb522
2 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -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