This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
/
appveyor.yml
58 lines (38 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: 1.0.{build}
image: Visual Studio 2022
clone_depth: 1
init:
- ps: ''
environment:
BOOST_ROOT: C:\Libraries\boost_1_83_0
MYSQL_ROOT_DIR: C:\mysql-8.1.0-winx64
OPENSSL_ROOT_DIR: C:\OpenSSL-v30-Win64
install:
- ps: >-
Write-Host "Installing MySQL Server 8.1" -ForegroundColor Cyan
Write-Host "Downloading MySQL..."
$zipPath = "$($env:temp)\mysql-8.1.0-winx64.zip"
(New-Object Net.WebClient).DownloadFile('https://cdn.mysql.com//Downloads/MySQL-8.1/mysql-8.1.0-winx64.zip', $zipPath)
Write-Host "Unpacking..."
7z x $zipPath -o"C:\" | Out-Null
Write-Host "MySQL Server 8.1 installed" -ForegroundColor Cyan
build_script:
- cmd: >-
git config user.email "[email protected]" && git config user.name "AppVeyor"
md build && cd build
cmake -G"Visual Studio 17 2022" -A x64 -DSCRIPTS=static -DTOOLS=True -DCMAKE_CXX_FLAGS=" /DWIN32 /D_WINDOWS /W3 /GR /EHsc /WX" -DCMAKE_C_FLAGS="/DWIN32 /D_WINDOWS /W3 /WX" ..
"C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe" /nologo /m:2 /p:Configuration=RelWithDebInfo /p:Platform="X64" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" "TrinityCore.sln"
cd bin\RelWithDebInfo\
copy "%MYSQL_ROOT_DIR%\lib\libmysql.dll" libmysql.dll
copy "%OPENSSL_ROOT_DIR%\libssl-3-x64.dll" libssl-3-x64.dll
copy "%OPENSSL_ROOT_DIR%\libcrypto-3-x64.dll" libcrypto-3-x64.dll
cd ..
7z a TrinityCoreWin64VS2022.zip .\RelWithDebInfo\*
del /F /Q /S "RelWithDebInfo\*.pdb" > NUL
7z a TrinityCoreWin64VS2022NoSymbols.zip .\RelWithDebInfo\*
test: off
artifacts:
- path: build\bin\TrinityCoreWin64VS2022.zip
name: TrinityCoreWin64VS2022
- path: build\bin\TrinityCoreWin64VS2022NoSymbols.zip
name: TrinityCoreWin64VS2022NoSymbols