File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 87
87
- name : ' Build'
88
88
working-directory : ${{ github.workspace }}
89
89
run : cmake --build out\build\${{ matrix.build_type }}
90
+
91
+ - if : matrix.arch != 'amd64_arm64'
92
+ name : ' Configure CMake (Spectre)'
93
+ working-directory : ${{ github.workspace }}
94
+ run : cmake --preset=${{ matrix.build_type }} -DENABLE_SPECTRE_MITIGATION=ON
95
+
96
+ - if : matrix.arch != 'amd64_arm64'
97
+ name : ' Build (Spectre)'
98
+ working-directory : ${{ github.workspace }}
99
+ run : cmake --build out\build\${{ matrix.build_type }}
Original file line number Diff line number Diff line change 50
50
name : ' Build (UWP)'
51
51
working-directory : ${{ github.workspace }}
52
52
run : msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platform }} ./DirectXTex_Windows10_2022.sln
53
+
54
+ - if : matrix.platform != 'ARM64'
55
+ name : ' Build (Spectre)'
56
+ working-directory : ${{ github.workspace }}
57
+ run : msbuild /m /p:SpectreMitigation=Spectre /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platform }} ./DirectXMesh_Desktop_${{ matrix.vs }}.sln
58
+
59
+ - if : matrix.platform != 'ARM64'
60
+ name : ' Build (Spectre Windows 10)'
61
+ working-directory : ${{ github.workspace }}
62
+ run : msbuild /m /p:SpectreMitigation=Spectre /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platform }} ./DirectXMesh_Desktop_${{ matrix.vs }}_Win10.sln
You can’t perform that action at this time.
0 commit comments