mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 14:18:00 +08:00
d66fc0c3b7
* Added RNG for NPS, cleaned up telemetry config files * Added Rust submodules * Added simple status message * Updated gec transport and key exchange * Update pprzink * Compilation fix for Travis
40 lines
1.5 KiB
YAML
40 lines
1.5 KiB
YAML
sudo: required
|
|
dist: trusty
|
|
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
before_install:
|
|
- sudo add-apt-repository ppa:paparazzi-uav/ppa -y
|
|
- sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
|
|
- sudo apt-get update -q
|
|
install:
|
|
- sudo apt-get install -y --force-yes paparazzi-dev paparazzi-jsbsim gcc-arm-embedded gcc-arm-linux-gnueabi libipc-run-perl rustc cargo
|
|
script:
|
|
- arm-none-eabi-gcc --version
|
|
- if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then if [ "${TRAVIS_EVENT_TYPE}" == "cron" ]; then make test_all_confs; else make test; fi; fi
|
|
|
|
env:
|
|
global:
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
# via the "travis encrypt" command using the project repo's public key
|
|
- secure: "QGE7s/sTIX3F4hG8YYbpYjB2x0YsUUo9qHf+Dv5BqNcTtZ2TLO0tHPWxoI5wlRLiMEOOnINNwYk7ooM3oOXa0Fm9urja9k78cFutbbDtvGD6DjUFajwJ0KnwXnLulCgG+l67umGitSazQpyEQE4pvX/8EnB9/pgq706DlmCbkds="
|
|
|
|
addons:
|
|
coverity_scan:
|
|
project:
|
|
name: "paparazzi/paparazzi"
|
|
description: "Build submitted via Travis CI"
|
|
notification_email: paparazzi-builds@nongnu.org
|
|
build_command_prepend: make ext; cov-configure --comptype gcc --compiler arm-none-eabi-gcc --template
|
|
build_command: make test_coverity
|
|
branch_pattern: coverity_scan
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/4187f8dda7a22a92b749
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|
|
on_start: false # default: false
|