Skip to content

Merge pull request #7 from buzzer-re/dev #75

Merge pull request #7 from buzzer-re/dev

Merge pull request #7 from buzzer-re/dev #75

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: [x86, x64]
steps:
- uses: actions/checkout@v2
- name: Install Visual Studio Build Tools
uses: microsoft/[email protected]
with:
vs-version: '17.0'
include-prerelease: true
# Install vcpkg
- name: Install vcpkg
run: |
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
git checkout a325228200d7f229f3337e612e0077f2a53
.\bootstrap-vcpkg.bat
# Install vcpkg dependencies
- name: Install vcpkg dependencies
run: |
cd vcpkg
.\vcpkg install zydis:${{ matrix.platform }}-windows
.\vcpkg integrate install
# Build the Ichigo and Shinigami projects
- name: Build the Ichigo and Shinigami projects
run: |
cd Shinigami
msbuild Shinigami.sln /t:Ichigo`;Shinigami /p:Configuration=Release /p:Platform=${{ matrix.platform }}