Skip to content

Commit 88f70fc

Browse files
anderspapittofacebook-github-bot
authored andcommitted
remove progress from git operations in CI builds (pytorch#13017)
Summary: these are pretty spammy - unless we have a reason to keep them, let's not Pull Request resolved: pytorch#13017 Differential Revision: D10528295 Pulled By: anderspapitto fbshipit-source-id: 5514371a6e61e13ec070cc5517488523d42f2935
1 parent 7863c17 commit 88f70fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ merge_pull_request_onto_master: &merge_pull_request_onto_master
2222
2323
git config remote.origin.url https://github.com/pytorch/pytorch.git
2424
git config --add remote.origin.fetch +refs/heads/master:refs/remotes/origin/master
25-
git fetch --tags --progress https://github.com/pytorch/pytorch.git +refs/heads/master:refs/remotes/origin/master --quiet
25+
git fetch --tags https://github.com/pytorch/pytorch.git +refs/heads/master:refs/remotes/origin/master --quiet
2626
if [[ "${CIRCLE_BRANCH}" == pull/* ]]; then # if this is a forked PR
27-
git fetch --tags --progress https://github.com/pytorch/pytorch.git +refs/${CIRCLE_BRANCH}/head:refs/remotes/origin/${CIRCLE_BRANCH}
27+
git fetch --tags https://github.com/pytorch/pytorch.git +refs/${CIRCLE_BRANCH}/head:refs/remotes/origin/${CIRCLE_BRANCH}
2828
else
29-
git fetch --tags --progress https://github.com/pytorch/pytorch.git +refs/heads/${CIRCLE_BRANCH}:refs/remotes/origin/${CIRCLE_BRANCH}
29+
git fetch --tags https://github.com/pytorch/pytorch.git +refs/heads/${CIRCLE_BRANCH}:refs/remotes/origin/${CIRCLE_BRANCH}
3030
fi
3131
3232
export GIT_MERGE_TARGET=`git log -n 1 --pretty=format:"%H" origin/master`
@@ -226,7 +226,7 @@ caffe2_linux_build_defaults: &caffe2_linux_build_defaults
226226
227227
# Need to checkout fetch PRs for onnxbot tracking PRs
228228
git submodule update --init third_party/onnx || true
229-
cd third_party/onnx && git fetch --tags --progress origin +refs/pull/*:refs/remotes/origin/pr/* && cd -
229+
cd third_party/onnx && git fetch --tags origin +refs/pull/*:refs/remotes/origin/pr/* && cd -
230230
231231
# Reinitialize submodules
232232
git submodule sync && git submodule update --init --recursive

0 commit comments

Comments
 (0)