You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
version: 1.0.{build}
|
|
os: Visual Studio 2015 RC
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
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: 5
|
|
init:
|
|
- 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%
|
|
|
|
install:
|
|
- cd ..
|
|
- git clone --depth=1 -b=master https://github.com/openframeworks/openFrameworks
|
|
- git clone --depth=1 -b=of-master-patch https://github.com/kr15h/ofxJSON openFrameworks\addons
|
|
- call openFrameworks\scripts\ci\addons\install.cmd
|
|
- cd openFrameworks\addons\ofxPiMapper
|
|
- move /y example_basic/addons.make.norpi example_basic/addons.make
|
|
- move /y example_camera/addons.make.norpi example_camera/addons.make
|
|
- move /y example_fbo-sources/addons.make.norpi example_fbo-sources/addons.make
|
|
- move /y example_pocketvj/addons.make.norpi example_pocketvj/addons.make
|
|
- move /y example_remote-client/addons.make.norpi example_remote-client/addons.make
|
|
- move /y example_remote-server/addons.make.norpi example_remote-server/addons.make
|
|
- move /y example_simpler/addons.make.norpi example_simpler/addons.make
|
|
- rd /s example_gamepad
|
|
|
|
build_script:
|
|
- cd %OF_PATH%
|
|
- scripts\ci\addons\build.cmd
|
|
|
|
|