From 3c228b3cc5172fae398af8de72b64bd780ace20c Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 5 Jun 2024 19:55:39 -0400 Subject: ci: Update packages and add container build --- ci/install.ps1 | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ci/install.ps1') diff --git a/ci/install.ps1 b/ci/install.ps1 index 7a5c455..3c2a2f4 100644 --- a/ci/install.ps1 +++ b/ci/install.ps1 @@ -1,5 +1,9 @@ param([String] $BaseUrl, [String] $ModuleName, [String] $ProjectName, [String]$FileName, [String]$Version) +#random delays to space out the downloads +$randomDelay = Get-Random -Minimum 1000 -Maximum 2000 +Start-Sleep -Milliseconds $randomDelay + $_src = "$BaseUrl/$ModuleName/$Version/$ProjectName/$FileName" #download the latest version -- cgit