Skip to content

Remove heavy artifacts #184

Remove heavy artifacts

Remove heavy artifacts #184

name: Windows Build
on:
workflow_dispatch:
pull_request:
push:
branches:
- 'master'
- '1.0'
- '1.1'
jobs:
BuildProject:
name: ${{ matrix.os }}-${{ matrix.buildtype }}
runs-on: ${{ matrix.os }}
permissions:
packages: write
contents: write
strategy:
matrix:
os: [windows-2022]
buildtype: [windows-release, windows-release-asan, windows-debug]
include:
- os: windows-2022
triplet: x64-windows
outputs:
upload_url: ${{ steps.upload_artifact.outputs.upload_url }}
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
cmd /c copy Black-Tek-Server.exe BlackTek-Server-Release.exe
- name: Compile Debug
run: |
cd D:\a\BlackTek-Server\BlackTek-Server
msbuild Black-Tek-Server.sln /p:Configuration=Debug
cmd /c copy Black-Tek-Server.exe BlackTek-Server-Debug.exe
del Black-Tek-Server.exe
cd D:\a\BlackTek-Server
del D:/a/BlackTek-Server/BlackTek-Server/vcpkg
del D:/a/BlackTek-Server/BlackTek-Server/premake_core
- name: Cleanup Vcpkg_installed
uses: JesseTG/[email protected]
with:
path: D:/a/BlackTek-Server/BlackTek-Server/vcpkg_installed
- name: Cleanup Intermediaries
uses: JesseTG/[email protected]
with:
path: D:/a/BlackTek-Server/BlackTek-Server/build
- name: Prepare Compressed Assets
run: |
7z a BlackTek-Server.zip D:/a/BlackTek-Server/BlackTek-Server/
- name: Upload Assets for Edge Build
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
uses: softprops/action-gh-release@v2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
prerelease: true
tag_name: ${{ matrix.buildtype }}-Edge-Build-${{ github.sha }}
name: BlackTek-Server-Windows-Edge-Build
body: |
Windows Edge build from commit ${{ github.sha }}
Commit message: ${{ github.event.head_commit.message }}
Build date: ${{ github.event.head_commit.timestamp }}
files: BlackTek-Server.zip