-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Storage/ Merge main to unblock pipeline failure (#5561)
* Sync eng/common directory with azure-sdk-tools for PR 8110 (#5540) * Show review link in logs and set DevOps project name based on the pipeline run * Handle the failures when package work item is unassigned (#5551) Co-authored-by: Praveen Kuttappan <prmarott@microsoft.com> * Revert win2022 image back to latest and add msvc version mitigation (#5539) * Revert win2022 image back to latest * Workaround fix for MSVC SxS issue * Fix Policheck step indention (#5553) Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> * Sync .github/workflows directory with azure-sdk-tools for PR 8131 (#5555) * Update to azure/login@v2 * Remove the unnecessary setting of enable-AzPSSession. We don't need it. --------- Co-authored-by: James Suplizio <jasupliz@microsoft.com> * Update sorting algorithm used in storage shared-key signing (#5547) * Remove Windows upgrade of cmake (windows image now uses working version of cmake) (#5558) * Revert "Update sorting algorithm used in storage shared-key signing (#5547)" (#5560) This reverts commit b6e04fd. --------- Co-authored-by: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Co-authored-by: Praveen Kuttappan <prmarott@microsoft.com> Co-authored-by: Daniel Jurek <djurek@microsoft.com> Co-authored-by: Wes Haggard <weshaggard@users.noreply.github.com> Co-authored-by: James Suplizio <jasupliz@microsoft.com> Co-authored-by: JinmingHu <jinmhu@microsoft.com>
- Loading branch information
1 parent
bed2665
commit 9951cef
Showing
14 changed files
with
54 additions
and
24 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
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
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This temporary fix resolves an issue on Win2022 machines that have multiple | ||
# MSVC versions installed side-by-side. When this issue is resolved, remove this | ||
# template and references: | ||
# https://github.com/actions/runner-images/issues/9701 | ||
|
||
steps: | ||
- pwsh: | | ||
$tempFile = New-TemporaryFile; | ||
systeminfo.exe /fo csv > $tempFile | ||
$osName = (Import-Csv $tempFile).'OS Name' | ||
Write-Host "OS Name: $osName" | ||
if (!($osName -like '*2022*')) { | ||
Write-Host "OS is not Windows Server 2022, skipping MSVC changes" | ||
exit 0 | ||
} | ||
Remove-item 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\Microsoft.VCToolsVersion.v143.default.*' -Force | ||
Get-ChildItem 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\' -Name | Write-Host | ||
displayName: Setup MSVC | ||
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT')) |
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