27 lines
751 B
YAML
27 lines
751 B
YAML
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install cmake
|
|
|
|
env:
|
|
global:
|
|
- secure: "lZ7pHQvl5dpZWzBQAaIMf0wqrvtcZ4wiZKeIZjf83TEsflW8+z0uTpIuN30ZV6Glth/Sq1OhLnTP5+N57fZU/1ebA5twHdvP4bS5CIUUg71/CXQZNl36xeaqvxsG/xRrdpKOsPdjAOsQ9KPTQulsX43XDLS7CasMiLvYOpqKcPc="
|
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
script: if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then make ; fi
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "assimp/assimp"
|
|
version: 3.2
|
|
description: "The Asset Importer Lib coverity run, branch coverity_scan"
|
|
notification_email: kim.kulling@googlemail.com
|
|
build_command_prepend: cmake -G "Unix Makefiles" -DASSIMP_ENABLE_BOOST_WORKAROUND=YES
|
|
build_command: make
|
|
branch_pattern: coverity_scan
|