mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-04 20:46:29 +03:00
ecode: Tentative fix for a segfaul when accesing an LSP Server that isn't running anymore.
31 lines
968 B
YAML
31 lines
968 B
YAML
name: Windows
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
Windows:
|
|
runs-on: windows-latest
|
|
env:
|
|
MSBUILD_PATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Checkout submodules
|
|
run: |
|
|
git submodule update --init --recursive
|
|
- name: Install dependencies
|
|
shell: powershell
|
|
run: |
|
|
Invoke-WebRequest -Uri "https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-windows.zip" -OutFile "premake-5.0.0-beta1-windows.zip"
|
|
Expand-Archive -DestinationPath . -Path premake-5.0.0-beta1-windows.zip
|
|
- name: Create project
|
|
shell: powershell
|
|
run: |
|
|
./premake5.exe --windows-vc-build vs2022
|
|
- name: Build
|
|
shell: cmd
|
|
run: |
|
|
"%MSBUILD_PATH%\MSBuild.exe" .\make\windows\eepp.sln -m /p:Platform="x64"
|