-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
40 lines (35 loc) · 1.12 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
version: 1.0.{build}
image:
- Visual Studio 2019
- Ubuntu
build:
verbosity: minimal
for:
-
matrix:
only:
- image: Visual Studio 2019
environment:
VULKAN_SDK: C:/VulkanSDK/1.1.130.0
APPVEYOR_SAVE_CACHE_ON_ERROR: true
cache:
- VulkanSDK.exe
- c:\VulkanSDK\
install:
- if not exist VulkanSDK.exe curl -L --silent --show-error --output VulkanSDK.exe https://vulkan.lunarg.com/sdk/download/1.1.130.0/windows/VulkanSDK-1.1.130.0-Installer.exe?Human=true && VulkanSDK.exe /S
build_script:
- msbuild /p:Configuration=Release /t:restore
- msbuild /p:Configuration=Release
-
matrix:
only:
- image: Ubuntu
environment:
FrameworkPathOverride: /usr/lib/mono/4.5/
install:
- wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
- sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-bionic.list https://packages.lunarg.com/vulkan/lunarg-vulkan-bionic.list
- sudo apt -qq update
- sudo apt -y install vulkan-sdk
build_script:
- dotnet build /p:Configuration=Release