diff --git a/.circleci/config.yml b/.circleci/config.yml index 129b11f61..d62fc838d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,8 +7,8 @@ jobs: - checkout - run: | cd trunk && - ./configure --without-rtc --without-gb28181 --without-utest --without-srtp-nasm && make && - ./configure --with-rtc --with-gb28181 --with-utest --with-srtp-nasm && make clean && make + ./configure --gb28181=off --utest=off --srtp-nasm=off && make && + ./configure --gb28181=on --utest=on --srtp-nasm=on && make clean && make test: docker: - image: ossrs/srs:dev @@ -16,7 +16,7 @@ jobs: - checkout - run: | cd trunk && - ./configure --with-rtc --with-gb28181 --with-srtp-nasm --with-utest --gcov && make && + ./configure --gb28181=on --srtp-nasm=on --utest=on --gcov=on && make && ./objs/srs_utest && bash auto/coverage.sh workflows: version: 2