You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
505 B
20 lines
505 B
|
|
# Build and autotest script for PX4 Firmware |
|
# http://travis-ci.org |
|
|
|
language: cpp |
|
|
|
before_script: |
|
- sudo add-apt-repository 'ppa:terry.guo/gcc-arm-embedded' -y |
|
- sudo apt-get update -q |
|
- sudo apt-get install gcc-arm-none-eabi python-serial python-argparse |
|
- sudo apt-get install flex bison libncurses5-dev autoconf texinfo build-essential |
|
- sudo apt-get install libtool zlib1g-dev genromfs git wget |
|
|
|
# Clone only as much as we need |
|
git: |
|
depth: 500 |
|
|
|
script: |
|
- make testbuild |
|
- make tests
|
|
|