Will this compile?

This commit is contained in:
FutureRave 2022-01-26 13:16:41 +00:00
parent 7489c790e4
commit bd81da4f11
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955
4 changed files with 8 additions and 8 deletions

View File

@ -12,7 +12,7 @@ on:
jobs: jobs:
build: build:
name: Build binaries name: Build binaries
runs-on: windows-latest runs-on: windows-2022
strategy: strategy:
matrix: matrix:
configuration: configuration:
@ -36,11 +36,11 @@ jobs:
lfs: false lfs: false
- name: Add msbuild to PATH - name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2 uses: microsoft/setup-msbuild@v1.1
- name: Generate project files - name: Generate project files
#run: tools/premake5 vs2019 --ci-build #run: tools/premake5 vs2022 --ci-build --ac-disable
run: tools/premake5 vs2019 --ac-disable run: tools/premake5 vs2022 --ac-disable
- name: Set up problem matching - name: Set up problem matching
uses: ammaraskar/msvc-problem-matcher@master uses: ammaraskar/msvc-problem-matcher@master

View File

@ -11,7 +11,7 @@
## How to compile ## How to compile
- Run `premake5 vs2019` or use the delivered `generate.bat`. - Run `premake5 vs2022` or use the delivered `generate.bat`.
- Build via solution file in `build\iw4x.sln`. (You can use the `build.bat` script to do it quick and easy.) - Build via solution file in `build\iw4x.sln`. (You can use the `build.bat` script to do it quick and easy.)
## Premake arguments ## Premake arguments

View File

@ -4,8 +4,8 @@ version: "#{build} ({branch})"
environment: environment:
matrix: matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
PREMAKE_ACTION: vs2019 PREMAKE_ACTION: vs2022
configuration: configuration:
- Debug - Debug

View File

@ -1,4 +1,4 @@
@echo off @echo off
echo Updating submodules... echo Updating submodules...
call git submodule update --init --recursive call git submodule update --init --recursive
call tools\premake5 %* vs2019 --ac-disable call tools\premake5 %* vs2022 --ac-disable