Skip to content

Debug log changes to failing pipeline #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .azuredevops/pipelines/DirectXMesh-GitHub-SDK-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,10 @@ jobs:
Contents: 'Directory.Build.props'
TargetFolder: $(Build.SourcesDirectory)
- template: '/.azuredevops/templates/DirectXMesh-build-uwp.yml'
- task: PublishPipelineArtifact@1
displayName: Publish Build Logs
condition: succeededOrFailed()
inputs:
targetPath: 'DirectXMesh\Bin\Windows10_2022\ARM64\Debug\DirectXMesh.tlog\'
artifact: UWP.ARM64_Debug_Logs
publishLocation: 'pipeline'
2 changes: 2 additions & 0 deletions .azuredevops/templates/DirectXMesh-build-uwp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@ steps:
# Windows on ARM 32-bit is deprecated. https://learn.microsoft.com/windows/arm/arm32-to-arm64
- task: VSBuild@1
displayName: Build solution DirectXMesh_Windows10_2022.sln arm64dbg
timeoutInMinutes: 30
inputs:
solution: DirectXMesh_Windows10_2022.sln
msbuildArgs: /p:PreferredToolArchitecture=x64
platform: ARM64
configuration: Debug
- task: VSBuild@1
displayName: Build solution DirectXMesh_Windows10_2022.sln arm64rel
timeoutInMinutes: 30
inputs:
solution: DirectXMesh_Windows10_2022.sln
msbuildArgs: /p:PreferredToolArchitecture=x64
Expand Down