-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
54 lines (41 loc) · 1.18 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
version: '{build}'
#branches:
# only:
#- master
os: Visual Studio 2015
platform:
- x64
#- Win32
configuration:
- Release
init:
- cmd: cmake --version
- cmd: msbuild /version
install:
- choco install graphviz.portable
- choco install doxygen.portable
- cmd: curl --silent --show-error --output VulkanSDK.exe https://vulkan.lunarg.com/sdk/download/1.0.61.1/windows/VulkanSDK-1.0.61.1-Installer.exe
- cmd: .\VulkanSDK.exe /S
environment:
VULKAN_SDK: "C:/VulkanSDK/1.0.61.1"
clone_folder: C:\libsga
before_build:
- cmd: cd C:\libsga
- cmd: md build
- cmd: cd build
- cmd: if "%platform%"=="Win32" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
- cmd: if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64
- cmd: cmake -G "%CMAKE_GENERATOR_NAME%" -DCMAKE_BUILD_TYPE=%configuration% ..
build:
project: C:\libsga\build\libsga.sln
parallel: true
verbosity: minimal
after_build:
- cmd: msbuild "C:\libsga\build\release.vcxproj" /m /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
- path: 'libsga-*.zip'
deploy:
- provider: Environment
name: sga-builds
on:
branch: master