1platform: x64
2configuration: Release
3image:
4 - Visual Studio 2017
5 - Visual Studio 2013
6install:
7 - cmd: choco install swig -y & exit 0
8build_script:
9 - cmake -P ci-build.cmake
10 - cmake --build build --config Release --target INSTALL
11test_script:
12 - set PATH=%PATH%;build\gtest\lib
13 - IF "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2017" build\bin\release\Test_Ogre.exe --gtest_filter=-MeshWithoutIndexDataTests*
14cache:
15- ogredeps -> CMake/Dependencies.cmake
16branches:
17  only:
18    - master
19    - stable
20artifacts:
21  - path: build/sdk
22    name: ogre-sdk-1.11.6-vc15-x64
23deploy:
24- provider: BinTray
25  username: paroj
26  api_key:
27    secure: 4nFEwKApbHUf7UajsDt6Z7QOl3zzgEz6YbWGSGx5AiPxozWEQHEyGc6c9xE7utWE
28  subject: ogrecave
29  repo: ogre
30  package: ogre-sdk-vc15-x64
31  publish: true
32  override: true
33  version: 1.11.6
34  on:
35    branch: stable
36    APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
37