Skip to content

Make SAR build on the current Windows toolchain #2

Make SAR build on the current Windows toolchain

Make SAR build on the current Windows toolchain #2

Workflow file for this run

name: Build SynchronousAudioRouter
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
pull-requests: read
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup MSBuild
uses: microsoft/[email protected]
with:
vs-version: "[17.0,18.0)"
msbuild-architecture: x64
- name: Build C++ Project
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild SynchronousAudioRouter.sln /t:Build /p:Configuration=Release /p:Platform=x64 /m /verbosity:minimal