From 0216e4689a28f802f73c6b2f560312254a560fc2 Mon Sep 17 00:00:00 2001 From: Jeremy Reizenstein Date: Thu, 3 Dec 2020 12:33:08 -0800 Subject: [PATCH] Slow pull from docker Summary: The "manual" docker pull in the testrun builds has been taking more than 10 minutes recently, and its lack of output causes circleci to timeout. As a quick fix, we enable the output from this operation. Reviewed By: gkioxari Differential Revision: D25305127 fbshipit-source-id: 19682bfa0294145457a37df6d6faf7a08dcc63c9 --- .circleci/config.in.yml | 3 +-- .circleci/config.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.in.yml b/.circleci/config.in.yml index 00288912..26442ebc 100644 --- a/.circleci/config.in.yml +++ b/.circleci/config.in.yml @@ -187,8 +187,7 @@ jobs: export DOCKER_IMAGE=pytorch/conda-cuda echo Pulling docker image $DOCKER_IMAGE - docker pull $DOCKER_IMAGE >/dev/null - + docker pull $DOCKER_IMAGE - run: name: Build and run tests command: | diff --git a/.circleci/config.yml b/.circleci/config.yml index f1bc3b1e..ce85d81e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -187,8 +187,7 @@ jobs: export DOCKER_IMAGE=pytorch/conda-cuda echo Pulling docker image $DOCKER_IMAGE - docker pull $DOCKER_IMAGE >/dev/null - + docker pull $DOCKER_IMAGE - run: name: Build and run tests command: |