-
Notifications
You must be signed in to change notification settings - Fork 16
56 lines (48 loc) · 1.67 KB
/
windows_build_runner.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Windows Build
on: [workflow_dispatch, pull_request, push]
jobs:
job:
name: ${{ matrix.os }}-${{ matrix.buildtype }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022]
buildtype: [windows-release, windows-release-asan, windows-debug]
include:
- os: windows-2022
triplet: x64-windows
packages: >
sccache
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Ensure Correct VCPKG Version
uses: lukka/run-vcpkg@main
with:
vcpkgGitURL: "https://github.com/microsoft/vcpkg.git"
vcpkgGitCommitId: ${{ steps.vcpkg-step.outputs.vcpkgGitCommitId }}
- name: Setup Premake & Generate Solution
run: |
git clone https://github.com/premake/premake-core
cd premake-core
cmd /c Bootstrap.bat
move .\bin\release\premake5.exe D:\a\BlackTek-Server\BlackTek-Server\premake5.exe
cd D:\a\BlackTek-Server\BlackTek-Server
D:\a\BlackTek-Server\BlackTek-Server\premake5.exe vs2022
- name: Configure Package Manager
uses: egor-tensin/vs-shell@v2
with:
arch: x64
- name: Install Dependencies
run: |
cd D:\a\BlackTek-Server
vcpkg install --triplet x64-windows
vcpkg integrate install
- name: Compile Release
run: |
cd D:\a\BlackTek-Server\BlackTek-Server
msbuild Black-Tek-Server.sln /p:Configuration=Release
- name: Compile Debug
run: |
cd D:\a\BlackTek-Server\BlackTek-Server
msbuild Black-Tek-Server.sln /p:Configuration=Debug