File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313
1414env :
1515 # Path to the solution file relative to the root of the project.
16- SOLUTION_FILE_PATH : Source/.
17-
18- # Configuration type to build.
19- # You can convert this to a build matrix if you need coverage of multiple configuration types.
20- # https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
21- BUILD_CONFIGURATION : Release
16+ SOLUTION_FILE_PATH : Source/SpeedTreeRT_vs2024.sln
2217
2318permissions :
2419 contents : read
2520
2621jobs :
2722 build :
28- runs-on : windows-latest
23+ runs-on : windows-2025-vs2026
24+ strategy :
25+ matrix :
26+ platform : [x86, x64]
27+ configuration : ['Debug (Full)', 'Release (Full)']
2928
3029 steps :
3130 - uses : actions/checkout@v6
3736 working-directory : ${{env.GITHUB_WORKSPACE}}
3837 # Add additional options to the MSBuild command line here (like platform or verbosity level).
3938 # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
40- run : msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION }} ${{env.SOLUTION_FILE_PATH}}
39+ run : msbuild /m " /p:Configuration=${{matrix.configuration}}" /p:Platform=${{matrix.platform }} ${{env.SOLUTION_FILE_PATH}}
You can’t perform that action at this time.
0 commit comments