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

Merge ST, support utest and coverage by gtest.

This commit is contained in:
winlin 2021-03-03 10:26:30 +08:00
parent 3bb1b673c5
commit 7d12c3641a
11 changed files with 444 additions and 3 deletions

View file

@ -0,0 +1,24 @@
version: 2
jobs:
build:
docker:
- image: ossrs/srs:dev
steps:
- checkout
- run: |
make linux-debug
test:
docker:
- image: ossrs/srs:dev
steps:
- checkout
- run: |
ln -sf /usr/local/gtest utest/gtest &&
make linux-debug-gcov &&
./obj/st_utest && bash auto/codecov.sh
workflows:
version: 2
build_and_test:
jobs:
- build
- test