Skip to content

Commit 850a4bb

Browse files
committed
Fix #1619, configure without utest by default. 3.0.136
1 parent f89b4b3 commit 850a4bb

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ jobs:
55
- image: ossrs/srs:dev
66
steps:
77
- checkout
8-
- run: cd trunk && ./configure && make
8+
- run: cd trunk && ./configure --with-utest && make
99
test:
1010
docker:
1111
- image: ossrs/srs:dev
1212
steps:
1313
- checkout
14-
- run: cd trunk && ./configure --gcov && make && ./objs/srs_utest && bash auto/coverage.sh
14+
- run: cd trunk && ./configure --with-utest --gcov && make && ./objs/srs_utest && bash auto/coverage.sh
1515
workflows:
1616
version: 2
1717
build_and_test:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ For previous versions, please read:
146146

147147
## V3 changes
148148

149+
* v3.0, 2020-03-21, For [#1619][bug #1619], configure without utest by default. 3.0.136
149150
* v3.0, 2020-03-21, For [#1651][bug #1651], fix return pnwrite of srs_write_large_iovs. 3.0.135
150151
* <strong>v3.0, 2020-03-18, [3.0 beta3(3.0.134)][r3.0b3] released. 122509 lines.</strong>
151152
* v3.0, 2020-03-12, For [#1635][bug #1635], inotify watch ConfigMap for reload. 3.0.134
@@ -1678,6 +1679,7 @@ Winlin
16781679
[bug #1630]: https://github.com/ossrs/srs/issues/1630
16791680
[bug #1635]: https://github.com/ossrs/srs/issues/1635
16801681
[bug #1651]: https://github.com/ossrs/srs/issues/1651
1682+
[bug #1619]: https://github.com/ossrs/srs/issues/1619
16811683
[bug #yyyyyyyyyyyyy]: https://github.com/ossrs/srs/issues/yyyyyyyyyyyyy
16821684

16831685
[exo #828]: https://github.com/google/ExoPlayer/pull/828

trunk/auto/options.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SRS_NGINX=NO
2020
SRS_FFMPEG_TOOL=NO
2121
SRS_LIBRTMP=NO
2222
SRS_RESEARCH=NO
23-
SRS_UTEST=YES
23+
SRS_UTEST=NO
2424
SRS_GPERF=NO # Performance test: tcmalloc
2525
SRS_GPERF_MC=NO # Performance test: gperf memory check
2626
SRS_GPERF_MD=NO # Performance test: gperf memory defence
@@ -386,7 +386,7 @@ function apply_user_presets() {
386386
SRS_HDS=YES
387387
SRS_LIBRTMP=YES
388388
SRS_RESEARCH=NO
389-
SRS_UTEST=YES
389+
SRS_UTEST=NO
390390
SRS_STATIC=NO
391391
fi
392392

@@ -413,7 +413,7 @@ function apply_user_presets() {
413413
SRS_HDS=YES
414414
SRS_LIBRTMP=YES
415415
SRS_RESEARCH=NO
416-
SRS_UTEST=YES
416+
SRS_UTEST=NO
417417
SRS_STATIC=NO
418418
fi
419419

trunk/src/core/srs_core_version3.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
#ifndef SRS_CORE_VERSION3_HPP
2525
#define SRS_CORE_VERSION3_HPP
2626

27-
#define SRS_VERSION3_REVISION 135
27+
#define SRS_VERSION3_REVISION 136
2828

2929
#endif

0 commit comments

Comments
 (0)