Created
January 21, 2017 21:23
-
-
Save DDuarte/4d59bd84568e74df710b14a4750846d5 to your computer and use it in GitHub Desktop.
AppVeyor YML configs 21 Jan 2017
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 1.0.{build} | |
configuration: | |
- Debug | |
- Release | |
platform: Any CPU | |
before_build: | |
- cmd: nuget restore | |
build: | |
verbosity: minimal | |
artifacts: | |
- path: SpellWork\bin | |
name: SpellWork | |
deploy: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 1.0.{build} | |
clone_depth: 1 | |
environment: | |
BOOST_ROOT: C:\Libraries\boost_1_60_0 | |
OPENSSL_ROOT_DIR: C:\OpenSSL-Win64 | |
build_script: | |
- cmd: >- | |
git tag -a -m "AppVeyor build" init | |
md build && cd build | |
cmake -G"Visual Studio 14 Win64" -DSCRIPTS=dynamic -DTOOLS=True -DCMAKE_CXX_FLAGS=" /DWIN32 /D_WINDOWS /W3 /GR /EHsc /WX" -DCMAKE_C_FLAGS="/DWIN32 /D_WINDOWS /W3 /WX" .. | |
"C:\Program Files (x86)\MSBuild\14.0\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" | |
artifacts: | |
- path: build\bin\RelWithDebInfo\ | |
name: TrinityCoreWin64VS2015 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 1.0.{build} | |
configuration: | |
- Debug | |
- Release | |
platform: Any CPU | |
clone_depth: 1 | |
build: | |
verbosity: minimal | |
artifacts: | |
- path: WowPacketParser\bin | |
name: WPP | |
deploy: off |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment