-
Notifications
You must be signed in to change notification settings - Fork 18
57 lines (53 loc) · 1.73 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
57
name: Windows Build
on: [workflow_dispatch, pull_request, push]
jobs:
build:
name: ${{ matrix.os }}-${{ matrix.configuration }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022]
configuration:
- releasedynamic
- releasestatic
- debugdynamic
- debugstatic
include:
- os: windows-2022
triplet: x64-windows
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install vcpkg
uses: lukka/run-vcpkg@v10
with:
vcpkgGitURL: "https://github.com/microsoft/vcpkg.git"
vcpkgGitCommitId: "215a2535590f1f63788ac9bd2ed58ad15e6afdff"
- name: Setup Premake
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
- name: Generate Solution
run: |
D:\a\BlackTek-Server\BlackTek-Server\premake5.exe vs2022
- name: Install Dependencies
shell: pwsh
run: |
if (${{ matrix.configuration }} -like '*Static') {
& "vcpkg" install --triplet=x64-windows-static
} else {
& "vcpkg" install
}
- name: Build Project
run: |
cd D:\a\BlackTek-Server\BlackTek-Server
msbuild Black-Tek-Server.sln /p:Configuration=${{ matrix.configuration }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: BlackTek-Server-${{ matrix.os }}-${{ matrix.configuration }}
path: |
Black-Tek-Server.exe