-
Notifications
You must be signed in to change notification settings - Fork 244
/
.travis.yml
42 lines (35 loc) · 980 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: cpp
#sudo: false
sudo: required
dist: trusty
addons:
apt:
# sources:
# - debian-sid
packages:
- gcc-arm-none-eabi
- libnewlib-arm-none-eabi
# - libstdc++-arm-none-eabi-newlib
# - gcc-arm-none-eabi binutils-arm-none-eabi python-usb libnewlib-arm-none-eabi
compiler:
- gcc
# - clang
os:
- linux
# - osx
matrix:
exclude:
- os: osx
compiler: gcc
- os: linux
compiler: clang
before_install:
- "if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then brew tap px4/px4; brew update; fi"
- "if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then brew install gcc-arm-none-eabi; fi"
# - "if [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]; then sudo ln -s /usr/bin/python /usr/bin/python2; fi"
script:
# Please don't change anything here. Instead, add any extra build commands to ci-script.sh
# This saves having to edit commands in three places for GnuWin32, CygWin & Linux
- bash -x ci-script.sh
notifications:
email: false