Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Fortescue <jofortes@microsoft.com>2020-09-02 02:07:41 +0300
committerJon Fortescue <jofortes@microsoft.com>2020-09-02 03:19:53 +0300
commit715e8be4dd9488252385572011b6fc9a186ecd8b (patch)
tree804d2d787bcb8e0b373c25e2f95ae5ffbb1a4d92 /eng/pipelines
parent0a996c2d1222c43f86c1568e3e7bfb0bae4d869d (diff)
no checkout bundle?
Diffstat (limited to 'eng/pipelines')
-rw-r--r--eng/pipelines/official/jobs/prepare-signed-artifacts.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/eng/pipelines/official/jobs/prepare-signed-artifacts.yml b/eng/pipelines/official/jobs/prepare-signed-artifacts.yml
index dc2a34463eb..afdac202092 100644
--- a/eng/pipelines/official/jobs/prepare-signed-artifacts.yml
+++ b/eng/pipelines/official/jobs/prepare-signed-artifacts.yml
@@ -21,7 +21,7 @@ jobs:
value: $[ coalesce(variables.OfficialSignType, 'real') ]
steps:
- - template: /eng/pipelines/common/clone-checkout-bundle-step.yml
+ # - template: /eng/pipelines/common/clone-checkout-bundle-step.yml
- ${{ if eq(parameters.isOfficialBuild, true) }}:
- task: NuGetAuthenticate@0
@@ -43,11 +43,12 @@ jobs:
# artifactName: IntermediateUnsignedArtifacts
# downloadPath: $(Build.SourcesDirectory)\artifacts\PackageDownload
- - powershell: >-
- $uri = "https://runtimesigningtest.blob.core.windows.net/runtimesigningtest/IntermediateUnsignedArtifacts.zip"
- $zipLocation = "$env:AGENT_TEMPDIRECTORY\IntermediateUnsignedArtifacts.zip"
- Invoke-WebRequest -Uri $uri -OutFile $zipLocation
- Expand-Archive -Path $zipLocation -DestinationPath "$env:BUILD_SOURCESDIRECTORY\artifacts\PackageDownload"
+ - powershell:
+ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
+ $uri = "https://runtimesigningtest.blob.core.windows.net/runtimesigningtest/IntermediateUnsignedArtifacts.zip";
+ $zipLocation = "$env:AGENT_TEMPDIRECTORY\IntermediateUnsignedArtifacts.zip";
+ Invoke-WebRequest -Uri $uri -OutFile $zipLocation;
+ Expand-Archive -Path $zipLocation -DestinationPath "$env:BUILD_SOURCESDIRECTORY\artifacts\PackageDownload";
displayName: Download IntermediateUnsignedArtifacts
- script: >-