From c8aaa5a1a6a55d4e9f3216ac985e912e83cbb528 Mon Sep 17 00:00:00 2001 From: winlin Date: Tue, 31 Mar 2020 16:40:08 +0800 Subject: [PATCH] Update circle CI script --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 741270d5d..1a44c21fb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,13 +5,17 @@ jobs: - image: ossrs/srs:dev steps: - checkout - - run: cd trunk && ./configure --without-rtc && make && ./configure --with-utest && make + - run: | + cd trunk && ./configure --without-rtc --without-utest && make && + ./configure --with-rtc --with-utest && make clean && make test: docker: - image: ossrs/srs:dev steps: - checkout - - run: cd trunk && ./configure --with-utest --gcov && make && ./objs/srs_utest && bash auto/coverage.sh + - run: | + cd trunk && ./configure --with-utest --gcov && make && + ./objs/srs_utest && bash auto/coverage.sh workflows: version: 2 build_and_test: