Skip to content

Call vcvars64.bat for unit test environment #106

Call vcvars64.bat for unit test environment

Call vcvars64.bat for unit test environment #106

Workflow file for this run

name: Unit test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions: read-all
jobs:
unittest:
runs-on: windows-2022
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup msbuild
uses: microsoft/setup-msbuild@v2
- name: Build unit test
run: msbuild SimpleComTest\SimpleComTest.vcxproj -property:"Configuration=Debug" -property:"Platform=x64"
- name: Run unit test
shell: cmd
run: |
for /f "delims=" %i in ('vswhere.exe -latest -property installationPath') do set VSPath=%i
call "%VSPath%\VC\Auxiliary\Build\vcvars64.bat"
vstest.console.exe /Platform:x64 SimpleComTest\x64\Debug\SimpleComTest.dll