Add better logging #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/setup-msbuild@v1.0.2 | |
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 }} |