mirror of
https://github.com/ossrs/srs.git
synced 2025-02-12 11:21:52 +00:00
Fix #1619, configure without utest by default. 3.0.136
This commit is contained in:
parent
f89b4b3b26
commit
850a4bbf20
4 changed files with 8 additions and 6 deletions
|
@ -5,13 +5,13 @@ jobs:
|
|||
- image: ossrs/srs:dev
|
||||
steps:
|
||||
- checkout
|
||||
- run: cd trunk && ./configure && make
|
||||
- run: cd trunk && ./configure --with-utest && make
|
||||
test:
|
||||
docker:
|
||||
- image: ossrs/srs:dev
|
||||
steps:
|
||||
- checkout
|
||||
- run: cd trunk && ./configure --gcov && make && ./objs/srs_utest && bash auto/coverage.sh
|
||||
- run: cd trunk && ./configure --with-utest --gcov && make && ./objs/srs_utest && bash auto/coverage.sh
|
||||
workflows:
|
||||
version: 2
|
||||
build_and_test:
|
||||
|
|
|
@ -146,6 +146,7 @@ For previous versions, please read:
|
|||
|
||||
## V3 changes
|
||||
|
||||
* v3.0, 2020-03-21, For [#1619][bug #1619], configure without utest by default. 3.0.136
|
||||
* v3.0, 2020-03-21, For [#1651][bug #1651], fix return pnwrite of srs_write_large_iovs. 3.0.135
|
||||
* <strong>v3.0, 2020-03-18, [3.0 beta3(3.0.134)][r3.0b3] released. 122509 lines.</strong>
|
||||
* v3.0, 2020-03-12, For [#1635][bug #1635], inotify watch ConfigMap for reload. 3.0.134
|
||||
|
@ -1678,6 +1679,7 @@ Winlin
|
|||
[bug #1630]: https://github.com/ossrs/srs/issues/1630
|
||||
[bug #1635]: https://github.com/ossrs/srs/issues/1635
|
||||
[bug #1651]: https://github.com/ossrs/srs/issues/1651
|
||||
[bug #1619]: https://github.com/ossrs/srs/issues/1619
|
||||
[bug #yyyyyyyyyyyyy]: https://github.com/ossrs/srs/issues/yyyyyyyyyyyyy
|
||||
|
||||
[exo #828]: https://github.com/google/ExoPlayer/pull/828
|
||||
|
|
|
@ -20,7 +20,7 @@ SRS_NGINX=NO
|
|||
SRS_FFMPEG_TOOL=NO
|
||||
SRS_LIBRTMP=NO
|
||||
SRS_RESEARCH=NO
|
||||
SRS_UTEST=YES
|
||||
SRS_UTEST=NO
|
||||
SRS_GPERF=NO # Performance test: tcmalloc
|
||||
SRS_GPERF_MC=NO # Performance test: gperf memory check
|
||||
SRS_GPERF_MD=NO # Performance test: gperf memory defence
|
||||
|
@ -386,7 +386,7 @@ function apply_user_presets() {
|
|||
SRS_HDS=YES
|
||||
SRS_LIBRTMP=YES
|
||||
SRS_RESEARCH=NO
|
||||
SRS_UTEST=YES
|
||||
SRS_UTEST=NO
|
||||
SRS_STATIC=NO
|
||||
fi
|
||||
|
||||
|
@ -413,7 +413,7 @@ function apply_user_presets() {
|
|||
SRS_HDS=YES
|
||||
SRS_LIBRTMP=YES
|
||||
SRS_RESEARCH=NO
|
||||
SRS_UTEST=YES
|
||||
SRS_UTEST=NO
|
||||
SRS_STATIC=NO
|
||||
fi
|
||||
|
||||
|
|
|
@ -24,6 +24,6 @@
|
|||
#ifndef SRS_CORE_VERSION3_HPP
|
||||
#define SRS_CORE_VERSION3_HPP
|
||||
|
||||
#define SRS_VERSION3_REVISION 135
|
||||
#define SRS_VERSION3_REVISION 136
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue