2019-02-02 11:57:29 +00:00
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
docker:
|
2019-12-03 02:48:51 +00:00
|
|
|
- image: ossrs/srs:dev
|
2019-02-02 11:57:29 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
2020-03-31 08:40:08 +00:00
|
|
|
- run: |
|
|
|
|
cd trunk && ./configure --without-rtc --without-utest && make &&
|
|
|
|
./configure --with-rtc --with-utest && make clean && make
|
2019-02-02 11:57:29 +00:00
|
|
|
test:
|
|
|
|
docker:
|
2019-12-03 02:48:51 +00:00
|
|
|
- image: ossrs/srs:dev
|
2019-02-02 11:57:29 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
2020-03-31 08:40:08 +00:00
|
|
|
- run: |
|
|
|
|
cd trunk && ./configure --with-utest --gcov && make &&
|
|
|
|
./objs/srs_utest && bash auto/coverage.sh
|
2019-02-02 11:57:29 +00:00
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build_and_test:
|
|
|
|
jobs:
|
|
|
|
- build
|
|
|
|
- test
|