File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 # Path to the solution file relative to the root of the project.
1616 SOLUTION_FILE_PATH : Source/.
1717
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
22-
2318permissions :
2419 contents : read
2520
2621jobs :
2722 build :
2823 runs-on : windows-latest
24+ strategy :
25+ matrix :
26+ platform : [x86, x64]
27+ configuration : [Debug, Release]
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