From 4575ab8aeb7cbdc17ab14828216e91b9c286b556 Mon Sep 17 00:00:00 2001 From: /dev/urandom Date: Wed, 18 Sep 2019 13:46:56 +0200 Subject: [PATCH] [AppVeyor] Initial commit. --- appveyor.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..978bc169 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,32 @@ +# AppVeyor CI configuration + +environment: + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PREMAKE_ACTION: vs2019 + +configuration: + - Debug + - Release + +platform: Win32 + +install: + - ps: | + Write-Host "Updating version information..." -ForegroundColor Cyan + + Update-AppveyorBuild -Version $(& tools/premake5.exe version | select -Last 1) + - git submodule update --init --recursive + - ps: | + Write-Host "Generating project files with premake..." -ForegroundColor Cyan + & "./tools/premake5.exe" $env:PREMAKE_ACTION + Write-Host "Generated" -ForegroundColor Green + +build: + project: build/iw4x.sln + parallel: true + verbosity: minimal + +artifacts: + - path: build/bin/**/*.dll + - path: build/bin/**/*.pdb