atbetaflight/.travis.yml

76 lines
1.4 KiB
YAML
Raw Normal View History

env:
# - PUBLISHMETA=True
# - PUBLISHDOCS=True
# Specify the main Mafile supported goals.
- GOAL=test
- GOAL=targets-group-1
- GOAL=targets-group-2
- GOAL=targets-group-3
- GOAL=targets-group-4
- GOAL=targets-group-rest
# - GOAL=all
# - GOAL=AFROMINI
# - GOAL=AIORACERF3
# - GOAL=...
# Or specify targets to run.
# - TARGET=AFROMINI
# - TARGET=AIORACERF3
# - TARGET=...
2016-09-24 15:19:10 -07:00
# use new docker environment
sudo: false
git:
depth: 5
addons:
apt:
packages:
- lcov
- build-essential
- git
- libc6-i386
- time
# We use cpp for unit tests, and c for the main project.
language: cpp
compiler: clang
dist: trusty
before_install:
- pip install --user cpp-coveralls
- gem install coveralls-lcov
install:
2016-09-02 20:13:32 -07:00
- make arm_sdk_install
before_script:
2017-07-01 02:21:16 -07:00
- tools/gcc-arm-none-eabi-6-2017-q2-update/bin/arm-none-eabi-gcc --version
- clang --version
- clang++ --version
- gcc --version
script: ./.travis.sh
2017-08-24 02:29:11 -07:00
cache:
directories:
- downloads
- tools
2017-08-24 02:29:11 -07:00
#notifications:
# irc: "chat.freenode.net#cleanflight"
# use_notice: true
# skip_join: true
2016-08-15 14:07:38 -07:00
notifications:
2016-10-01 16:53:36 -07:00
slack: betaflightgroup:LQSj02nsBEdefcO5UQcLgB0U
2016-08-15 14:07:38 -07:00
webhooks:
urls:
2016-08-15 23:59:26 -07:00
- https://webhooks.gitter.im/e/0c20f7a1a7e311499a88
on_success: always # options: [always|never|change] default: always
2016-08-15 14:07:38 -07:00
on_failure: always # options: [always|never|change] default: always
2016-08-15 23:59:26 -07:00
on_start: always # options: [always|never|change] default: always