assimp/appveyor.yml

56 lines
1.3 KiB
YAML
Raw Normal View History

2015-07-12 16:07:01 +00:00
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# clone directory
clone_folder: c:\projects\assimp
shallow_clone: true
2015-07-12 16:07:01 +00:00
# branches to build
branches:
# whitelist
only:
- master
image:
- Visual Studio 2013
- Visual Studio 2015
- Visual Studio 2017
2016-01-09 11:13:39 +00:00
platform:
- Win32
- x64
2016-02-15 09:20:34 +00:00
configuration: Release
2015-07-12 16:07:01 +00:00
build:
parallel: true
project: Assimp.sln
2016-02-17 12:44:33 +00:00
install:
- set CMAKE_DEFINES -DASSIMP_WERROR=ON
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2013" set CMAKE_GENERATOR_NAME=Visual Studio 12 2013
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" set CMAKE_GENERATOR_NAME=Visual Studio 15 2017
- if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=%CMAKE_GENERATOR_NAME% Win64
- cmake %CMAKE_DEFINES% -G "%CMAKE_GENERATOR_NAME%"
cache:
- code\assimp.dir\%CONFIGURATION%
2016-02-19 17:32:16 +00:00
after_build:
- 7z a assimp.7z %APPVEYOR_BUILD_FOLDER%\bin\%CONFIGURATION%\* %APPVEYOR_BUILD_FOLDER%\lib\%CONFIGURATION%\*
before_test:
- dir "%APPVEYOR_BUILD_FOLDER%\bin"
- xcopy /s "%APPVEYOR_BUILD_FOLDER%\bin\%CONFIGURATION%" "%APPVEYOR_BUILD_FOLDER%\bin\test\%CONFIGURATION%"
test:
assemblies:
only:
- bin\test\%CONFIGURATION%\unit.exe
2016-02-19 17:32:16 +00:00
artifacts:
- path: assimp.7z
2016-02-19 17:40:21 +00:00
name: assimp_lib