mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
441 B
YAML
25 lines
441 B
YAML
4 years ago
|
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
|