We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab011d commit 686803dCopy full SHA for 686803d
1 file changed
.github/workflows/windows.yaml
@@ -6,7 +6,7 @@ on:
6
types: [opened, synchronize, reopened]
7
8
env:
9
- FOO: "BAR"
+ DX_AGILITY_SDK_URL: "https://www.nuget.org/api/v2/package/Microsoft.Direct3D.D3D12/1.615.1"
10
11
jobs:
12
windows:
@@ -35,6 +35,13 @@ jobs:
35
- name: Checkout
36
uses: actions/checkout@v4
37
38
+ - name: Download DirectX 12 Agility SDK
39
+ shell: pwsh
40
+ run: |
41
+ $ProgressPreference = 'SilentlyContinue'
42
+ Invoke-WebRequest -Uri $env:DX_AGILITY_SDK_URL -OutFile "d3d12.zip"
43
+ Expand-Archive -Path "d3d12.zip" -DestinationPath "d3d12_sdk"
44
+
45
- name: Configure CMake
46
shell: pwsh
47
run: |
@@ -44,6 +51,7 @@ jobs:
51
-Bbuild `
52
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} `
53
-DD3D12MA_BUILD_SAMPLE=ON `
54
+ -DD3D12MA_AGILITY_SDK_DIRECTORY=INVALID `
55
${{ matrix.config.cmake_configure_options }}
48
56
49
57
- name: Build
0 commit comments