diff options
| author | Billy O'Neal <bion@microsoft.com> | 2021-01-13 14:05:38 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-13 14:05:38 -0800 |
| commit | 4da47f758fb5e02fc017047e014d15174b85a848 (patch) | |
| tree | 8aeb3f8203a4ca64f18a3187421f1f81402f752f /scripts | |
| parent | c239e8251051eb86a8439b916dcc7fc81554ec53 (diff) | |
| download | vcpkg-4da47f758fb5e02fc017047e014d15174b85a848.tar.gz vcpkg-4da47f758fb5e02fc017047e014d15174b85a848.zip | |
[vcpkg] Add sources for TLS 1.2 downloader tool. (#15516)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/azure-pipelines/Format-CxxCode.ps1 | 1 | ||||
| -rw-r--r-- | scripts/azure-pipelines/signing.yml | 16 | ||||
| -rw-r--r-- | scripts/azure-pipelines/windows/signing.signproj | 3 |
3 files changed, 20 insertions, 0 deletions
diff --git a/scripts/azure-pipelines/Format-CxxCode.ps1 b/scripts/azure-pipelines/Format-CxxCode.ps1 index a20a9ce0b..2653562a7 100644 --- a/scripts/azure-pipelines/Format-CxxCode.ps1 +++ b/scripts/azure-pipelines/Format-CxxCode.ps1 @@ -36,6 +36,7 @@ Push-Location $toolsrc try { $files = Get-ChildItem -Recurse -LiteralPath "$toolsrc/src" -Filter '*.cpp' + $files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/src" -Filter '*.c' $files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/include/vcpkg" -Filter '*.h' $files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/include/vcpkg-test" -Filter '*.h' $files += Get-Item "$toolsrc/include/pch.h" diff --git a/scripts/azure-pipelines/signing.yml b/scripts/azure-pipelines/signing.yml index 2d8e0065d..b7a3137d9 100644 --- a/scripts/azure-pipelines/signing.yml +++ b/scripts/azure-pipelines/signing.yml @@ -52,6 +52,10 @@ jobs: inputs:
InputType: 'CommandLine'
arguments: 'analyze "$(Build.StagingDirectory)\vcpkg.exe"'
+ - task: BinSkim@3
+ inputs:
+ InputType: 'CommandLine'
+ arguments: 'analyze "$(Build.StagingDirectory)\tls12-download.exe"'
- task: PublishBuildArtifacts@1
displayName: 'Publish vcpkg.exe'
inputs:
@@ -64,6 +68,18 @@ jobs: PathtoPublish: '$(Build.ArtifactStagingDirectory)\vcpkg.pdb'
ArtifactName: 'Windows'
publishLocation: 'Container'
+ - task: PublishBuildArtifacts@1
+ displayName: 'Publish tls12-download.exe'
+ inputs:
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)\tls12-download.exe'
+ ArtifactName: 'Windows'
+ publishLocation: 'Container'
+ - task: PublishBuildArtifacts@1
+ displayName: 'Publish tls12-download.pdb'
+ inputs:
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)\tls12-download.pdb'
+ ArtifactName: 'Windows'
+ publishLocation: 'Container'
- task: MicroBuildCleanup@1
condition: succeededOrFailed()
displayName: MicroBuild Cleanup
diff --git a/scripts/azure-pipelines/windows/signing.signproj b/scripts/azure-pipelines/windows/signing.signproj index 2ded02c83..9382e0a0e 100644 --- a/scripts/azure-pipelines/windows/signing.signproj +++ b/scripts/azure-pipelines/windows/signing.signproj @@ -14,6 +14,9 @@ <FilesToSign Include="$(IntermediateOutputPath)\vcpkg.exe">
<Authenticode>Microsoft400</Authenticode>
</FilesToSign>
+ <FilesToSign Include="$(IntermediateOutputPath)\tls12-download.exe">
+ <Authenticode>Microsoft400</Authenticode>
+ </FilesToSign>
</ItemGroup>
<ImportGroup Label="ExtensionTargets">
|
