From 234c72b15a73485add57ba1b9524ec76fd6a1fd6 Mon Sep 17 00:00:00 2001 From: Alan Jeffrey Date: Fri, 26 Jan 2018 09:44:07 -0600 Subject: [PATCH] Use https github URL to clone servo-warc-tests repo --- etc/ci/performance/test_perf.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/etc/ci/performance/test_perf.sh b/etc/ci/performance/test_perf.sh index 2b97eb9a6e6..306cc659e7c 100755 --- a/etc/ci/performance/test_perf.sh +++ b/etc/ci/performance/test_perf.sh @@ -26,8 +26,10 @@ else echo "Found existing test cases, skipping download and unzip." fi +# We use the https URL for the repo so the clone works even if +# github.com isn't in ssh's known hosts. WARC_DIR="./servo-warc-tests" -WARC_REPO="git@github.com:servo/servo-warc-tests.git" +WARC_REPO="https://github.com/servo/servo-warc-tests.git" # Clone the warc tests if they don't exist if [[ ! -d ${WARC_DIR} ]]; then