servo: Merge #19855 - Added --progress flag to test-perf git commands (from asajeffrey:test-perf-git-progress); r=jdm

<!-- Please describe your changes on the following line: -->

Adding a `--progress` flag to git commands in test-perf to try to avoid the timeouts we're seeing at http://build.servo.org/builders/linux-nightly/builds/581/steps/test/logs/stdio
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes do not require tests because this is test infrastructure

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: 8c1af9cce7197104dda76873be6c713e0b0d3866

--HG--
extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear
extra : subtree_revision : 7a1d217d458222e072c59547947912a519e028d5
This commit is contained in:
Alan Jeffrey 2018-01-25 15:30:22 -06:00
Родитель d76723e154
Коммит e9c13fe9ed
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -31,11 +31,11 @@ WARC_REPO="git@github.com:servo/servo-warc-tests.git"
# Clone the warc tests if they don't exist # Clone the warc tests if they don't exist
if [[ ! -d ${WARC_DIR} ]]; then if [[ ! -d ${WARC_DIR} ]]; then
git clone ${WARC_REPO} git clone --progress ${WARC_REPO}
fi fi
# Make sure we're running with an up-to-date warc test repo # Make sure we're running with an up-to-date warc test repo
git -C ${WARC_DIR} pull git -C ${WARC_DIR} pull --progress
virtualenv venv --python="$(which python3)" virtualenv venv --python="$(which python3)"
PS1="" source venv/bin/activate PS1="" source venv/bin/activate