Skip to content

Commit e72ffdd

Browse files
Trying to fix the path to Agility SDK (2)
1 parent 8e97704 commit e72ffdd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/windows.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ jobs:
3939
shell: pwsh
4040
run: |
4141
$ProgressPreference = 'SilentlyContinue'
42-
Invoke-WebRequest -Uri $env:DX_AGILITY_SDK_URL -OutFile "d3d12.zip"
43-
Expand-Archive -Path "d3d12.zip" -DestinationPath "d3d12_sdk"
44-
echo "DX_AGILITY_SDK_PATH=$env:GITHUB_WORKSPACE/d3d12_sdk" >> $env:GITHUB_ENV
42+
Invoke-WebRequest -Uri $env:DX_AGILITY_SDK_URL -OutFile "agility_sdk.zip"
43+
Expand-Archive -Path "agility_sdk.zip" -DestinationPath "agility_sdk"
4544
4645
- name: Configure CMake
4746
shell: pwsh
@@ -52,7 +51,7 @@ jobs:
5251
-Bbuild `
5352
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} `
5453
-DD3D12MA_BUILD_SAMPLE=ON `
55-
-DD3D12MA_AGILITY_SDK_DIRECTORY=$env:DX_AGILITY_SDK_PATH `
54+
-DD3D12MA_AGILITY_SDK_DIRECTORY=$env:GITHUB_WORKSPACE/agility_sdk `
5655
${{ matrix.config.cmake_configure_options }}
5756
5857
- name: Build

0 commit comments

Comments
 (0)