From 7d07b9d82cf981c59159a7df8a4a0779bf691ebd Mon Sep 17 00:00:00 2001 From: winlin Date: Tue, 3 Dec 2019 10:48:51 +0800 Subject: [PATCH] Fix circleci build failed, use the right docker --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f11e26526..907ce546a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,13 +2,13 @@ version: 2 jobs: build: docker: - - image: ossrs/dev + - image: ossrs/srs:dev steps: - checkout - run: cd trunk && ./configure && make test: docker: - - image: ossrs/dev + - image: ossrs/srs:dev steps: - checkout - run: cd trunk && ./configure --gcov && make && ./objs/srs_utest && bash auto/coverage.sh