Skip to content

Instantly share code, notes, and snippets.

@Artox
Last active August 7, 2017 14:08
Show Gist options
  • Save Artox/04a1fbb50c24f6ef3eebc8b1c68638a1 to your computer and use it in GitHub Desktop.
Save Artox/04a1fbb50c24f6ef3eebc8b1c68638a1 to your computer and use it in GitHub Desktop.
AppVeyor CI for ArcEmu
version: 0.{build}
branches:
only:
- arm
skip_tags: true
image: Visual Studio 2017
configuration:
- Debug
- Release
platform:
- Win32
- x64
- ARM
shallow_clone: true
before_build:
- cmd: mkdir build
- cmd: cd build
- cmd: if "%platform%"=="Win32" set CMAKE_GENERATOR_NAME=Visual Studio 15 2017
- cmd: if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 15 2017 Win64
- cmd: if "%platform%"=="ARM" set CMAKE_GENERATOR_NAME=Visual Studio 15 2017 ARM
- cmd: echo cmake -G "%CMAKE_GENERATOR_NAME%" -DCMAKE_BUILD_TYPE="%configuration%" ..\cmake
- cmd: cmake -G "%CMAKE_GENERATOR_NAME%" -DCMAKE_BUILD_TYPE="%configuration%" ..\cmake
build:
project: build\Arcemu.sln
parallel: true
verbosity: minimal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment