Skip to content

please work

please work #121

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