-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappveyor.yml
41 lines (32 loc) · 1 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Underworld Adventures - an Ultima Underworld remake project
# Copyright (c) 2002-2023 Underworld Adventures Team
#
# AppVeyor build configuration file
#
version: 0.11.0.{build}
image: Visual Studio 2022
platform: Win32
configuration: AppVeyor
cache:
- C:\Users\appveyor\AppData\Local\vcpkg\archives -> appveyor.yml
- C:\projects\underworldadventures\uwadv\vcpkg_installed -> appveyor.yml
install:
- cd C:\Tools\vcpkg
- git pull > nul
- call .\bootstrap-vcpkg.bat -disableMetrics
- .\vcpkg integrate install
- cd %APPVEYOR_BUILD_FOLDER%
before_build:
- ps: uwadv\Patch-BuildVersion.ps1 -version $env:appveyor_build_version
build:
project: uwadv\uwadv.sln
parallel: true
verbosity: minimal
after_build:
- cmd: |
cd %APPVEYOR_BUILD_FOLDER%\uwadv\output\bin\Release
"c:\Program Files\7-Zip\7z.exe" a -r -x!pdb\ -x!hacking.exe -x!unittest.* -x!*.exp -x!*.lib ..\..\..\..\uwadv-%appveyor_build_version%.zip *.*
artifacts:
- path: uwadv-*.zip
name: Underworld Adventures Zip Archive