-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathappveyor.yml
44 lines (34 loc) · 1.19 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
version: 2.0.{build}
branches:
only:
- master
- appveyor
skip_tags: true
image:
- Visual Studio 2019
- Ubuntu
environment:
project_folder: '%APPVEYOR_BUILD_FOLDER%'
dependency_folder: '%APPVEYOR_BUILD_FOLDER%\dependencies'
windows_sdl2_dir: '%dependency_folder%\SDL2-2.0.14'
# Dependency URLs
windows_premake_url: 'https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-windows.zip'
windows_sdl2_url: 'https://www.libsdl.org/release/SDL2-devel-2.0.14-VC.zip'
linux_premake_url: 'https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-linux.tar.gz'
install:
- cmd: '%APPVEYOR_BUILD_FOLDER%\.appveyor\Install.bat'
# - sh: '${APPVEYOR_BUILD_FOLDER}/.appveyor/Install.sh'
build_script:
- cmd: '%APPVEYOR_BUILD_FOLDER%\.appveyor\Build.bat'
# - sh: '${APPVEYOR_BUILD_FOLDER}/.appveyor/Build.sh'
after_build:
- cmd: '%APPVEYOR_BUILD_FOLDER%\.appveyor\AfterBuild.bat'
# - sh: '${APPVEYOR_BUILD_FOLDER}/.appveyor/AfterBuild.sh'
#cache:
# - 'DriverLevelTool\obj\'
# - 'DriverSoundTool\obj\'
artifacts:
- path: bin\*\*.zip
name: Windows Binaries
- path: bin\*\*.tar.gz
name: Linux Binaries