forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add retries to Invoke-WebRequest, update to PowerShell Core 6 (Azure#…
…7030) - Downloads may occasionally fail due to server or network issues
- Loading branch information
1 parent
8130715
commit a1d20dd
Showing
6 changed files
with
50 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
singleQuote: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
trigger: none | ||
|
||
jobs: | ||
- template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml | ||
parameters: | ||
ServiceDirectory: storage | ||
PreSteps: | ||
- powershell: | | ||
$TestConfigurationPath = "$(Build.ArtifactStagingDirectory)/TestConfiguration.xml" | ||
'$(net-storage-test-configuration)' | Out-File -Encoding Utf8 $TestConfigurationPath | ||
Write-Host "##vso[task.setvariable variable=TestConfigurationPath]$TestConfigurationPath" | ||
- template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml | ||
parameters: | ||
ServiceDirectory: storage | ||
PreSteps: | ||
- pwsh: | | ||
$TestConfigurationPath = "$(Build.ArtifactStagingDirectory)/TestConfiguration.xml" | ||
'$(net-storage-test-configuration)' | Out-File -Encoding Utf8 $TestConfigurationPath | ||
Write-Host "##vso[task.setvariable variable=TestConfigurationPath]$TestConfigurationPath" | ||
EnvVars: | ||
AZ_STORAGE_CONFIG_PATH: $(TestConfigurationPath) | ||
EnvVars: | ||
AZ_STORAGE_CONFIG_PATH: $(TestConfigurationPath) |