From 8c92cccdbbc664cbc1fee28e2d28b2e6b36fe93c Mon Sep 17 00:00:00 2001 From: Anichitei Ionel-Cristinel <49393881+ianichitei@users.noreply.github.com> Date: Fri, 31 Jul 2020 17:58:48 +0300 Subject: [PATCH] Run the Windows build as well --- .github/workflows/c-cpp.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 0ab8113..2cbcdad 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -7,7 +7,7 @@ on: branches: [ master ] jobs: - build: + Linux build: runs-on: ubuntu-latest @@ -48,3 +48,18 @@ jobs: cd pydis python3 setup.py build cd .. + + Windows build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1.0.1 + - name: Build bddisasm and bdshemu for x64 + run: MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=x64 bddisasm.sln + - name: Build bddisasm and bdshemu for Win32 + run: MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=Win32 bddisasm.sln + - name: Build disasmtool + run: MSBuild /t:Build /p:Configuration=Release /p:Platform=x64 disasmtool\disasmtool.vcxproj