mirror of
https://github.com/bitdefender/bddisasm.git
synced 2025-02-03 10:41:09 +00:00
Run the Windows build as well
This commit is contained in:
parent
1184a314a1
commit
8c92cccdbb
17
.github/workflows/c-cpp.yml
vendored
17
.github/workflows/c-cpp.yml
vendored
@ -7,7 +7,7 @@ on:
|
|||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
Linux build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
@ -48,3 +48,18 @@ jobs:
|
|||||||
cd pydis
|
cd pydis
|
||||||
python3 setup.py build
|
python3 setup.py build
|
||||||
cd ..
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user