2017-04-09 16:27:20 +00:00
|
|
|
dist: trusty
|
2015-03-25 21:38:09 +00:00
|
|
|
env:
|
|
|
|
global:
|
2018-01-20 13:40:36 +00:00
|
|
|
- secure: jKV3Hj/lvoNjU2JUSUlLsLAHX+BI0R27+qTEPSihHpNGB+NOvbwlfpisrqxA/9nanVhtq9I3PJi2Jd5Pkg+3TkYvRq62ZT1Ty/DuxbQmMWlhEZT6wxbVS7919OZ3K0WAOizt3/HzSxL5XZheGRAKf89SoUF6mOP4V3DCh5rzze4=
|
|
|
|
matrix:
|
|
|
|
- TOOLCHAIN=
|
|
|
|
- TOOLCHAIN=raspberry.toolchain
|
2015-03-25 21:38:09 +00:00
|
|
|
addons:
|
|
|
|
coverity_scan:
|
|
|
|
project:
|
2017-04-02 11:44:05 +00:00
|
|
|
name: mpromonet/v4l2rtspserver
|
2015-10-17 11:09:20 +00:00
|
|
|
build_command_prepend: cmake .
|
|
|
|
build_command: make
|
2015-03-28 10:26:35 +00:00
|
|
|
branch_pattern: master
|
2015-06-14 15:00:48 +00:00
|
|
|
notification_email: scan_notifications@example.com
|
2018-01-20 13:40:36 +00:00
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- git
|
|
|
|
- cmake
|
|
|
|
- liblog4cpp5-dev
|
|
|
|
- liblivemedia-dev
|
|
|
|
- libasound2-dev
|
|
|
|
before_install:
|
|
|
|
- pip install --user cpp-coveralls pyYaml
|
|
|
|
language: cpp
|
|
|
|
compiler: gcc
|
|
|
|
script:
|
|
|
|
- echo "TOOLCHAIN=$TOOLCHAIN"
|
|
|
|
- if [ "$TOOLCHAIN" != "" ]; then git clone --depth 1 https://github.com/raspberrypi/tools.git rpi_tools && export PATH=$PATH:$(pwd)/rpi_tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin; fi
|
|
|
|
#build on native system
|
|
|
|
- cmake . && make && cpack .
|
|
|
|
#run coverage test
|
|
|
|
- if [ "$TOOLCHAIN" == "" ]; then cmake -DCOVERAGE=ON . && make && make test; fi
|
|
|
|
after_success:
|
|
|
|
- coveralls --gcov-options '\-lp'
|
2015-10-17 11:09:20 +00:00
|
|
|
before_deploy:
|
2018-01-20 13:19:09 +00:00
|
|
|
- export RELEASE_PKG_FILE=$(ls *.deb)
|
|
|
|
- echo "deploying ${RELEASE_PKG_FILE} to GitHub releases"
|
2015-10-17 11:09:20 +00:00
|
|
|
deploy:
|
|
|
|
provider: releases
|
|
|
|
api_key:
|
2017-04-09 13:29:05 +00:00
|
|
|
secure: gcQy7QO09vfGtcRMi8D+6VykDfK1tuz1jEZRmJER6eZ0p2gRi4F6mtsMRJWt3QsKkZQWkJpPTvCfv9GyNmWTrZV746y5QVnd+mjPx+6K/LgroK4LWgOgzJ6zQ6qfDKU80GbxJOnNv9/HmIcxSCiactxS50tbvntqpBGCmiIL+4U=
|
2015-11-06 08:55:34 +00:00
|
|
|
file:
|
2018-01-20 13:19:09 +00:00
|
|
|
- "${RELEASE_PKG_FILE}"
|
2015-10-17 11:09:20 +00:00
|
|
|
skip_cleanup: true
|
|
|
|
on:
|
2017-04-02 11:44:05 +00:00
|
|
|
repo: mpromonet/v4l2rtspserver
|
2015-10-17 11:09:20 +00:00
|
|
|
tags: true
|