Fix bug for regression test, check process by script.
This commit is contained in:
parent
b9284b6cc6
commit
05209eb522
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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user