1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-12 19:31:53 +00:00
srs/.circleci/config.yml
2019-02-02 20:08:49 +08:00

21 lines
354 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 && make && ./objs/srs_utest
workflows:
version: 2
build_and_test:
jobs:
- build
- test