From c47be164f353c4cdf142f7e431c19d4e8103de0b Mon Sep 17 00:00:00 2001 From: "Micael Levi L. Cavalcante" Date: Mon, 13 Nov 2023 22:06:18 -0400 Subject: [PATCH] ci: switch to shallow cloning of 'wrk' repository --- .circleci/install-wrk.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/install-wrk.sh b/.circleci/install-wrk.sh index 31f910edd..e78e13622 100755 --- a/.circleci/install-wrk.sh +++ b/.circleci/install-wrk.sh @@ -6,8 +6,8 @@ cd "$(dirname "$0")" cd /tmp/ sudo apt-get install build-essential libssl-dev git -y -git clone https://github.com/wg/wrk.git wrk +git clone --depth=1 https://github.com/wg/wrk.git wrk cd wrk sudo make # move the executable to somewhere in your PATH, ex: -sudo cp wrk /usr/local/bin \ No newline at end of file +sudo cp wrk /usr/local/bin