remove premake5.exe

This commit is contained in:
2024-04-08 18:30:09 +02:00
parent f58acde370
commit 6fd01fa87c
5 changed files with 32 additions and 18 deletions

View File

@ -13,6 +13,9 @@ concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
PREMAKE_VERSION: "5.0.0-beta2"
jobs:
build:
name: Build binaries
@ -20,8 +23,8 @@ jobs:
strategy:
matrix:
configuration:
- Debug
- Release
- debug
- release
steps:
- name: Check out files
uses: actions/checkout@main
@ -34,8 +37,13 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@main
- name: Install Premake5
uses: diamante0018/setup-premake@master
with:
version: ${{ env.PREMAKE_VERSION }}
- name: Generate project files
run: tools/premake5 vs2022
run: premake5 vs2022
- name: Set up problem matching
uses: ammaraskar/msvc-problem-matcher@master