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

CI: Update badges

This commit is contained in:
winlin 2019-02-02 20:17:57 +08:00
parent b0e91e8fe9
commit 3e8f070635
3 changed files with 21 additions and 23 deletions

20
.circleci/config.yml Normal file
View file

@ -0,0 +1,20 @@
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