From 204775fee548c3b9f5b56eedebe8f88bf0069fbb Mon Sep 17 00:00:00 2001 From: Alexander Nikolaev <55398552+alnikola@users.noreply.github.com> Date: Fri, 17 Apr 2020 17:30:15 +0200 Subject: [PATCH] Set fetch depth to 5 for stress tests on NanoServer (#35109) Increases git fetch depth for Windows NanoServer to avoid checkout failures Fixes #33428 --- eng/pipelines/libraries/stress/http.yml | 2 +- eng/pipelines/libraries/stress/ssl.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/libraries/stress/http.yml b/eng/pipelines/libraries/stress/http.yml index 9c34a65..2d7dbb6 100644 --- a/eng/pipelines/libraries/stress/http.yml +++ b/eng/pipelines/libraries/stress/http.yml @@ -56,7 +56,7 @@ jobs: steps: - checkout: self clean: true - fetchDepth: 1 + fetchDepth: 5 lfs: false - pwsh: | diff --git a/eng/pipelines/libraries/stress/ssl.yml b/eng/pipelines/libraries/stress/ssl.yml index 11e3f0d..88e20ef 100644 --- a/eng/pipelines/libraries/stress/ssl.yml +++ b/eng/pipelines/libraries/stress/ssl.yml @@ -57,7 +57,7 @@ jobs: steps: - checkout: self clean: true - fetchDepth: 1 + fetchDepth: 5 lfs: false - pwsh: | -- 2.7.4