From 8d9af57cfac754a40ae21b6d4499547181f8842c Mon Sep 17 00:00:00 2001 From: winlin Date: Thu, 11 Feb 2021 21:14:04 +0800 Subject: [PATCH] Fix circleci fail --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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