mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
22 lines
410 B
YAML
22 lines
410 B
YAML
|
version: 2
|
||
|
jobs:
|
||
|
build:
|
||
|
docker:
|
||
|
- image: ossrs/dev
|
||
|
steps:
|
||
|
- checkout
|
||
|
- cd trunk && ./configure --without-ssl --without-valgrind && make
|
||
|
test:
|
||
|
docker:
|
||
|
- image: ossrs/dev
|
||
|
steps:
|
||
|
- checkout
|
||
|
- cd trunk && ./configure --without-ssl --without-valgrind && make && ./objs/srs_utest
|
||
|
workflows:
|
||
|
version: 2
|
||
|
build_and_test:
|
||
|
jobs:
|
||
|
- build
|
||
|
- test
|
||
|
|