From f6aad5404b7d6dd1bb81236007b03acd4f040531 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Thu, 8 Dec 2022 01:12:57 -0800 Subject: [PATCH] YAML code review --- build/DirectXMath-GitHub-CMake-Dev17.yml | 30 ++++++++++++------------ build/DirectXMath-GitHub-CMake.yml | 12 +++++----- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/build/DirectXMath-GitHub-CMake-Dev17.yml b/build/DirectXMath-GitHub-CMake-Dev17.yml index a986c74..4cff817 100644 --- a/build/DirectXMath-GitHub-CMake-Dev17.yml +++ b/build/DirectXMath-GitHub-CMake-Dev17.yml @@ -45,75 +45,75 @@ jobs: - task: CMake@1 displayName: 'CMake (MSVC): Config x64' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: 'CMake (MSVC): Build x64 Debug' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out -v --config Debug - task: CMake@1 displayName: 'CMake (MSVC): Build x64 Release' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out -v --config RelWithDebInfo - task: CMake@1 displayName: 'CMake (MSVC): Config x86' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: 'CMake (MSVC): Build x86 Debug' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out2 -v --config Debug - task: CMake@1 displayName: 'CMake (MSVC): Build x86 Release' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out2 -v --config RelWithDebInfo - task: CMake@1 displayName: 'CMake (MSVC): Config ARM64' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: 'CMake (MSVC): Build ARM64 Debug' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out3 -v --config Debug - task: CMake@1 displayName: 'CMake (MSVC): Build ARM64 Release' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out3 -v --config RelWithDebInfo - task: CMake@1 displayName: 'CMake (ClangCl): Config x64' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -T clangcl -B out4 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: 'CMake (ClangCl): Build x64 Debug' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out4 -v --config Debug - task: CMake@1 displayName: 'CMake (ClangCl): Build x64 Release' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out4 -v --config RelWithDebInfo - task: CMake@1 displayName: 'CMake (ClangCl): Config ARM64' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out5 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)' - task: CMake@1 displayName: 'CMake (ClangCl): Build ARM64 Debug' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out5 -v --config Debug - task: CMake@1 displayName: 'CMake (ClangCl): Build ARM64 Release' inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out5 -v --config RelWithDebInfo diff --git a/build/DirectXMath-GitHub-CMake.yml b/build/DirectXMath-GitHub-CMake.yml index c4f3a5d..1c4e4cd 100644 --- a/build/DirectXMath-GitHub-CMake.yml +++ b/build/DirectXMath-GitHub-CMake.yml @@ -44,12 +44,12 @@ jobs: - task: CMake@1 displayName: CMake (MSVC x64) inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: CMake (Build x64) inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out -v - task: CMake@1 displayName: CMake Test (MSVC x64) @@ -64,12 +64,12 @@ jobs: - task: CMake@1 displayName: CMake (MSVC ARM64) inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A ARM64 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: CMake (Build ARM64) inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out2 -v - task: CMake@1 displayName: CMake Test (MSVC ARM64) @@ -84,12 +84,12 @@ jobs: - task: CMake@1 displayName: CMake (ClangCl) inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: '-G "$(VS_GENERATOR)" -A x64 -T clangcl -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)' - task: CMake@1 displayName: CMake (Build) inputs: - cwd: '' + cwd: '$(Build.SourcesDirectory)' cmakeArgs: --build out3 -v - task: CMake@1 displayName: CMake Test (ClangCL)