srs/.circleci/config.yml
2019-02-02 20:17:57 +08:00

21 lines
353 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