Skip to content

Commit 5d89f10

Browse files
committed
More YAML fixes
1 parent 6c790b0 commit 5d89f10

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

build/DirectXMath-GitHub-CMake-Dev17.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
displayName: 'CMake (ClangCl): Build ARM64 Debug'
112112
inputs:
113113
cwd: ''
114-
cmakeArgs: --build out5 -v --config ARM64 Debug
114+
cmakeArgs: --build out5 -v --config Debug
115115
- task: CMake@1
116116
displayName: 'CMake (ClangCl): Build ARM64 Release'
117117
inputs:

build/DirectXMath-GitHub-WSL-11.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pool:
2626

2727
variables:
2828
GITHUB_PAT: $(GITHUBPUBLICTOKEN)
29-
DEST_DIR: $(DESTDIR)
3029

3130
jobs:
3231
- job: BUILD_WSL
@@ -50,8 +49,8 @@ jobs:
5049
targetType: inline
5150
script: |
5251
$ProgressPreference = 'SilentlyContinue'
53-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/corert/master/src/Native/inc/unix/sal.h -o $(DEST_DIR)usr/local/include/sal.h
54-
$fileHash = Get-FileHash -Algorithm SHA512 $(DEST_DIR)usr/local/include/sal.h | ForEach { $_.Hash} | Out-String
52+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/corert/master/src/Native/inc/unix/sal.h -o $(Build.SourcesDirectory)/Inc/sal.h
53+
$fileHash = Get-FileHash -Algorithm SHA512 $(Build.SourcesDirectory)/Inc/sal.h | ForEach { $_.Hash} | Out-String
5554
$filehash = $fileHash.Trim()
5655
Write-Host "##[debug]SHA512: " $filehash
5756
if ($fileHash -ne "1643571673195d9eb892d2f2ac76eac7113ef7aa0ca116d79f3e4d3dc9df8a31600a9668b7e7678dfbe5a76906f9e0734ef8d6db0903ccc68fc742dd8238d8b0") {

build/DirectXMath-GitHub-WSL.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pool:
2626

2727
variables:
2828
GITHUB_PAT: $(GITHUBPUBLICTOKEN)
29-
DEST_DIR: $(DESTDIR)
3029

3130
jobs:
3231
- job: BUILD_WSL
@@ -50,8 +49,8 @@ jobs:
5049
targetType: inline
5150
script: |
5251
$ProgressPreference = 'SilentlyContinue'
53-
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/corert/master/src/Native/inc/unix/sal.h -o $(DEST_DIR)usr/local/include/sal.h
54-
$fileHash = Get-FileHash -Algorithm SHA512 $(DEST_DIR)usr/local/include/sal.h | ForEach { $_.Hash} | Out-String
52+
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/corert/master/src/Native/inc/unix/sal.h -o $(Build.SourcesDirectory)/Inc/sal.h
53+
$fileHash = Get-FileHash -Algorithm SHA512 $(Build.SourcesDirectory)/Inc/sal.h | ForEach { $_.Hash} | Out-String
5554
$filehash = $fileHash.Trim()
5655
Write-Host "##[debug]SHA512: " $filehash
5756
if ($fileHash -ne "1643571673195d9eb892d2f2ac76eac7113ef7aa0ca116d79f3e4d3dc9df8a31600a9668b7e7678dfbe5a76906f9e0734ef8d6db0903ccc68fc742dd8238d8b0") {

0 commit comments

Comments
 (0)