1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-14 20:31:56 +00:00
srs/.circleci/config.yml

22 lines
420 B
YAML
Raw Normal View History

2019-02-02 11:57:29 +00:00
version: 2
jobs:
build:
docker:
- image: ossrs/dev
steps:
- checkout
2019-02-02 12:00:17 +00:00
- run: cd trunk && ./configure --without-ssl --without-valgrind && make
2019-02-02 11:57:29 +00:00
test:
docker:
- image: ossrs/dev
steps:
- checkout
2019-02-02 12:00:17 +00:00
- run: cd trunk && ./configure --without-ssl --without-valgrind && make && ./objs/srs_utest
2019-02-02 11:57:29 +00:00
workflows:
version: 2
build_and_test:
jobs:
- build
- test