-
Notifications
You must be signed in to change notification settings - Fork 13
/
.appveyor.yml
39 lines (36 loc) · 1.01 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}
os: Visual Studio 2015 RC
environment:
global:
APPVEYOR_OS_NAME: windows
matrix:
#MSYS2 Building
- platform: x86
BUILDER: MSYS2
#VisualStudio Building
- platform: x86
BUILDER : VS
BITS: 32
- platform: x64
BUILDER : VS
BITS: 64
configuration: Debug
shallow_clone: true
clone_depth: 10
init:
- set MAKEFLAGS=-s
- set MSYS2_PATH=c:\msys64
- set CHERE_INVOKING=1
- if "%BUILDER%_%PLATFORM%"=="MSYS2_x86" set MSYSTEM=MINGW32
- if "%BUILDER%_%PLATFORM%"=="MSYS2_x64" set MSYSTEM=MINGW64
- if "%BUILDER%"=="VS" set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%\..\
- set OF_ROOT=%CD%\openFrameworks
- set OF_ADDON_NAME=%APPVEYOR_PROJECT_NAME%
install:
- git clone --depth=1 --branch=CI-TESTS https://github.com/bakercp/openFrameworks %OF_ROOT%
- cd %OF_ROOT%
- call scripts\ci\addons\install.cmd
build_script:
- cd %OF_ROOT%
- call scripts\ci\addons\build.cmd