Skip to content

Commit

Permalink
working on msbuild action
Browse files Browse the repository at this point in the history
  • Loading branch information
arakov committed Mar 21, 2024
1 parent c4bbd3e commit 93e981f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ permissions:

jobs:
build:
runs-on: windows-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [windows-latest]
platform: [x86, x64]

steps:
- uses: actions/checkout@v3
Expand All @@ -37,4 +42,4 @@ jobs:
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /p:platform=${{ matrix.platform }} /m:2

0 comments on commit 93e981f

Please sign in to comment.