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.
22 lines
386 B
YAML
22 lines
386 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: ossrs/dev
|
|
steps:
|
|
- checkout
|
|
- run: cd trunk && ./configure && make
|
|
test:
|
|
docker:
|
|
- image: ossrs/dev
|
|
steps:
|
|
- checkout
|
|
- run: cd trunk && ./configure --gcov && make && ./objs/srs_utest && bash auto/coverage.sh
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- build
|
|
- test
|
|
|