1
0
mirror of https://github.com/microsoft/DirectXMath synced 2024-11-22 04:10:06 +00:00

YAML code review

This commit is contained in:
Chuck Walbourn 2022-12-08 01:12:57 -08:00
parent 17cb43de7e
commit f6aad5404b
2 changed files with 21 additions and 21 deletions

View File

@ -45,75 +45,75 @@ jobs:
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Config x64' displayName: 'CMake (MSVC): Config x64'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Build x64 Debug' displayName: 'CMake (MSVC): Build x64 Debug'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out -v --config Debug cmakeArgs: --build out -v --config Debug
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Build x64 Release' displayName: 'CMake (MSVC): Build x64 Release'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out -v --config RelWithDebInfo cmakeArgs: --build out -v --config RelWithDebInfo
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Config x86' displayName: 'CMake (MSVC): Config x86'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Build x86 Debug' displayName: 'CMake (MSVC): Build x86 Debug'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out2 -v --config Debug cmakeArgs: --build out2 -v --config Debug
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Build x86 Release' displayName: 'CMake (MSVC): Build x86 Release'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out2 -v --config RelWithDebInfo cmakeArgs: --build out2 -v --config RelWithDebInfo
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Config ARM64' displayName: 'CMake (MSVC): Config ARM64'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Build ARM64 Debug' displayName: 'CMake (MSVC): Build ARM64 Debug'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out3 -v --config Debug cmakeArgs: --build out3 -v --config Debug
- task: CMake@1 - task: CMake@1
displayName: 'CMake (MSVC): Build ARM64 Release' displayName: 'CMake (MSVC): Build ARM64 Release'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out3 -v --config RelWithDebInfo cmakeArgs: --build out3 -v --config RelWithDebInfo
- task: CMake@1 - task: CMake@1
displayName: 'CMake (ClangCl): Config x64' displayName: 'CMake (ClangCl): Config x64'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -T clangcl -B out4 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -T clangcl -B out4 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: 'CMake (ClangCl): Build x64 Debug' displayName: 'CMake (ClangCl): Build x64 Debug'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out4 -v --config Debug cmakeArgs: --build out4 -v --config Debug
- task: CMake@1 - task: CMake@1
displayName: 'CMake (ClangCl): Build x64 Release' displayName: 'CMake (ClangCl): Build x64 Release'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out4 -v --config RelWithDebInfo cmakeArgs: --build out4 -v --config RelWithDebInfo
- task: CMake@1 - task: CMake@1
displayName: 'CMake (ClangCl): Config ARM64' displayName: 'CMake (ClangCl): Config ARM64'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out5 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out5 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)'
- task: CMake@1 - task: CMake@1
displayName: 'CMake (ClangCl): Build ARM64 Debug' displayName: 'CMake (ClangCl): Build ARM64 Debug'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out5 -v --config Debug cmakeArgs: --build out5 -v --config Debug
- task: CMake@1 - task: CMake@1
displayName: 'CMake (ClangCl): Build ARM64 Release' displayName: 'CMake (ClangCl): Build ARM64 Release'
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out5 -v --config RelWithDebInfo cmakeArgs: --build out5 -v --config RelWithDebInfo

View File

@ -44,12 +44,12 @@ jobs:
- task: CMake@1 - task: CMake@1
displayName: CMake (MSVC x64) displayName: CMake (MSVC x64)
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: CMake (Build x64) displayName: CMake (Build x64)
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out -v cmakeArgs: --build out -v
- task: CMake@1 - task: CMake@1
displayName: CMake Test (MSVC x64) displayName: CMake Test (MSVC x64)
@ -64,12 +64,12 @@ jobs:
- task: CMake@1 - task: CMake@1
displayName: CMake (MSVC ARM64) displayName: CMake (MSVC ARM64)
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: CMake (Build ARM64) displayName: CMake (Build ARM64)
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out2 -v cmakeArgs: --build out2 -v
- task: CMake@1 - task: CMake@1
displayName: CMake Test (MSVC ARM64) displayName: CMake Test (MSVC ARM64)
@ -84,12 +84,12 @@ jobs:
- task: CMake@1 - task: CMake@1
displayName: CMake (ClangCl) displayName: CMake (ClangCl)
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -T clangcl -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -T clangcl -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
- task: CMake@1 - task: CMake@1
displayName: CMake (Build) displayName: CMake (Build)
inputs: inputs:
cwd: '' cwd: '$(Build.SourcesDirectory)'
cmakeArgs: --build out3 -v cmakeArgs: --build out3 -v
- task: CMake@1 - task: CMake@1
displayName: CMake Test (ClangCL) displayName: CMake Test (ClangCL)