Skip to content

Commit

Permalink
[release/9.0.1xx] Fix tsa file not found (#25255)
Browse files Browse the repository at this point in the history
* [housekeeping] Remove debug.keystore (#25240)

* [housekeeping] Fix ps1 script warnings (#25241)

* [housekeeping] Fix ps1 script warnings

* Fix upload tsa

* Try tsaoptions from artifact
# Conflicts:
#	eng/scripts/appium-install.ps1
  • Loading branch information
rmarinho authored Oct 15, 2024
1 parent d3784a4 commit 227b1b7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
Binary file removed eng/debug.keystore
Binary file not shown.
1 change: 1 addition & 0 deletions eng/pipelines/common/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ steps:
${{ parameters.checkoutDirectory }}/artifacts/**/vs-workload.props
${{ parameters.checkoutDirectory }}/eng/automation/SignList.xml
${{ parameters.checkoutDirectory }}/eng/automation/SignVerifyIgnore.txt
${{ parameters.checkoutDirectory }}/eng/automation/guardian/**
!${{ parameters.checkoutDirectory}}/artifacts/docs-packs/**
!${{ parameters.checkoutDirectory}}/artifacts/binaries/**
!${{ parameters.checkoutDirectory}}/artifacts/**/res.zip
Expand Down
9 changes: 9 additions & 0 deletions eng/pipelines/common/sign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ stages:
condition: eq(variables.signingCondition, true)
use1ESTemplate: true
usePipelineArtifactTasks: true
checkoutType : 'self'

- template: nuget-msi-convert/job/v4.yml@yaml-templates
parameters:
Expand All @@ -37,6 +38,14 @@ stages:
patterns: |
**/SignVerifyIgnore.txt
- task: DownloadPipelineArtifact@2
inputs:
artifactName: nuget
downloadPath: $(Build.SourcesDirectory)\eng\automation\guardian
patterns: |
**/tsaoptions-v2.json
**/source.gdnsuppress
- task: MicroBuildCodesignVerify@3
displayName: verify signed msi content
inputs:
Expand Down
4 changes: 2 additions & 2 deletions eng/scripts/update-version-props.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<#
<#
.SYNOPSIS
Updates the Versions.props variables.
Expand Down Expand Up @@ -93,4 +93,4 @@ Write-Output("tvOS version: " + $xmlDoc.Project.PropertyGroup.MicrosofttvOSSdkPa
Write-Output("MacCatalyst version: " + $xmlDoc.Project.PropertyGroup.MicrosoftMacCatalystSdkPackageVersion)
Write-Output("Mac version: " + $xmlDoc.Project.PropertyGroup.MicrosoftmacOSSdkPackageVersion)

$xmlDoc.Save($xmlFileName)
$xmlDoc.Save($xmlFileName)
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@

<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DefineConstants>$(DefineConstants);ENABLE_TEST_CLOUD</DefineConstants>
<AndroidKeyStore>True</AndroidKeyStore>
<AndroidSigningKeyStore>$(MSBuildThisFileDirectory)../../../../../eng/debug.keystore</AndroidSigningKeyStore>
<AndroidSigningStorePass>android</AndroidSigningStorePass>
<AndroidSigningKeyAlias>androiddebugkey</AndroidSigningKeyAlias>
<AndroidSigningKeyPass>android</AndroidSigningKeyPass>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 227b1b7

Please sign in to comment.