forked from rosflight/rosflight_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (32 loc) · 992 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
dist: "xenial"
language: cpp
addons:
apt:
packages:
- build-essential
- libc6-i386
- libbz2-1.0:i386
- libncurses5:i386
- libz1:i386
- cmake
- libgtest-dev
- libeigen3-dev
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt update -qq
- gcc --version
- curl --retry 10 --retry-max-time 120 -L "https://launchpad.net/gcc-arm-embedded/5.0/5-2016-q1-update/+download/gcc-arm-none-eabi-5_3-2016q1-20160330-linux.tar.bz2" | tar xfj -
install:
- sudo apt-get install -qq g++-5 gcc-5
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 90
- export PATH=$PATH:$PWD/gcc-arm-none-eabi-5_3-2016q1/bin
- cd /usr/src/gtest
- sudo cmake CMakeLists.txt
- sudo make
- sudo cp *.a /usr/lib
before_script:
- cd "${TRAVIS_BUILD_DIR}"
- arm-none-eabi-gcc --version
script:
- ./scripts/run_tests.sh