-
Notifications
You must be signed in to change notification settings - Fork 11
40 lines (33 loc) · 998 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 }}