Skip to content

Commit

Permalink
ci: Use build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
dimhotepus committed May 24, 2024
1 parent 8d705e5 commit d845b4d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
27 changes: 6 additions & 21 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: MSBuild

on:
Expand All @@ -12,36 +7,26 @@ on:
branches: [ "master" ]

env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .

# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release

# Build architecture
BUILD_PLATFORM: x64

permissions:
contents: read

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: [x86, x64]
configuration: [Debug, Release]

steps:
- uses: actions/checkout@v4

- name: Add MSBuild to PATH
uses: microsoft/[email protected]

- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
uses: microsoft/setup-msbuild@v2

- name: Build
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}} /p:Platform=${{env.BUILD_PLATFORM}} ${{env.SOLUTION_FILE_PATH}}
run: msbuild /m /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}} ${{env.SOLUTION_FILE_PATH}}
3 changes: 2 additions & 1 deletion bink_media_player.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.clang-format = .clang-format
.editorconfig = .editorconfig
LICENSE = LICENSE
.github\workflows\msbuild.yml = .github\workflows\msbuild.yml
README.md = README.md
THIRD_PARTY. = THIRD_PARTY.
THIRD_PARTY = THIRD_PARTY
EndProjectSection
EndProject
Global
Expand Down

0 comments on commit d845b4d

Please sign in to comment.