Skip to content

Commit

Permalink
Merge pull request #315 from microsoft/staging
Browse files Browse the repository at this point in the history
Release - 1/10/24
  • Loading branch information
EricJohnson327 authored Jan 10, 2024
2 parents 866b2a3 + 641bd23 commit c76f7f7
Show file tree
Hide file tree
Showing 32 changed files with 71 additions and 3,160 deletions.
15 changes: 15 additions & 0 deletions TestingScenarios.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Testing Scenarios
These are the testing scenarios that need to be validated before shipping a new release. When an automated test is added, please remove it from the below lists.


### Widgets
1. For each widget: user can configure the widget before pinning
1. For each widget: user can see widget in dashboard after pinning
1. For each widget that supports customization: can be customized and persist after restart
1. Widgets have correct data
1. Widgets are adequately performant
1. Notifications can be enabled/disabled in Dev Home settings
1. Notifications are displayed

### Clone repositories
1. User can log in and get the list of repositories
9 changes: 9 additions & 0 deletions ToolingVersions.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE-CODE in the project root for license information. -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<TargetPlatformMinVersion>10.0.19045.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion>10.0.19045.0</SupportedOSPlatformVersion>
</PropertyGroup>
</Project>
32 changes: 31 additions & 1 deletion build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ parameters:
- release

variables:
MSIXVersion: '0.800'
MSIXVersion: '0.900'
solution: '**/GitHubExtension.sln'
appxPackageDir: 'AppxPackages'
testOutputArtifactDir: 'TestResults'
Expand Down Expand Up @@ -108,6 +108,7 @@ extends:
authKey: $(TouchdownAppKey)
resourceFilePath: |
**\en-US\*.resw;P:466
**\en-US\PDP.xml
localizationTarget: false
appendRelativeDir: true
pseudoSetting: Included
Expand All @@ -121,6 +122,10 @@ extends:
$Files = Get-ChildItem . -R -Filter 'Resources.resw' | ? FullName -Like '*en-US\*\Resources.resw'
$Files | % { Move-Item -Verbose $_.Directory $_.Directory.Parent.Parent -EA:Ignore }
$Files = Get-ChildItem . -R -Filter 'PDP.xml' | ? FullName -Like '*en-US\*\PDP.xml'
$Files | % { Move-Item -Verbose $_.Directory $_.Directory.Parent.Parent -EA:Ignore }
pwsh: true

- task: PowerShell@2
Expand Down Expand Up @@ -359,6 +364,31 @@ extends:
artifactName: MsixBundle_Release
targetPath: StorePublish

- task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1
displayName: Download and Use Localization Files
condition: eq(variables['EnableLocalization'], 'true')
retryCountOnTaskFailure: 2
inputs:
teamId: 71221
authId: $(TouchdownAppId)
authKey: $(TouchdownAppKey)
resourceFilePath: |
**\en-US\PDP.xml
localizationTarget: false
appendRelativeDir: true
pseudoSetting: Included

- task: PowerShell@2
displayName: Move Loc files one level up
condition: eq(variables['EnableLocalization'], 'true')
inputs:
targetType: inline
script: >-
$Files = Get-ChildItem . -R -Filter 'PDP.xml' | ? FullName -Like '*en-US\*\PDP.xml'
$Files | % { Move-Item -Verbose $_.Directory $_.Directory.Parent.Parent -EA:Ignore }
pwsh: true

- task: MS-RDX-MRO.windows-store-publish-dev.package-task.store-package@2
displayName: 'Create Staging StoreBroker Package'
condition: eq(variables['BuildingBranch'], 'staging')
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/CreateBuildInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Param(
)

$Major = "0"
$Minor = "8"
$Minor = "9"
$Patch = "99" # default to 99 for local builds

$versionSplit = $Version.Split(".");
Expand Down
157 changes: 0 additions & 157 deletions build/store/canary/PDPs/de-DE/PDP.xml

This file was deleted.

Loading

0 comments on commit c76f7f7

Please sign in to comment.