forked from librepilot/LibrePilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (44 loc) · 1.36 KB
/
.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
42
43
44
45
46
47
48
49
50
language: cpp
sudo: required
matrix:
include:
# Linux builds
- os: linux
compiler: gcc
dist: trusty
before_install:
- sudo add-apt-repository ppa:librepilot/tools -y
- sudo apt-get update -q
- sudo apt-get install -y libc6-i386 libudev-dev libusb-1.0-0-dev libsdl1.2-dev python libopenscenegraph-dev libosgearth-dev qt56-meta-minimal qt56svg qt56script qt56serialport qt56multimedia qt56translations qt56tools
- make build_sdk_install
# OSX build
- os: osx
compiler: clang
before_install:
- brew update
- brew install curl
- brew install p7zip
- brew install gnu-tar
# - brew install cmake
- brew outdated gdal || brew upgrade gdal
- brew outdated geos || brew upgrade geos
- brew install ccache
- export PATH="/usr/local/opt/ccache/libexec:$PATH"
- ccache -V
- brew install qt5
- brew link --force qt5
- make arm_sdk_install
- make osg_install
- make osgearth_install
- wget https://www.libsdl.org/release/SDL-1.2.15.dmg
- hdiutil attach SDL-1.2.15.dmg
- sudo cp -r /Volumes/SDL/SDL.framework /Library/Frameworks/
- hdiutil detach /Volumes/SDL
script:
- make config_new CCACHE=ccache
- make -j2 all_flight
- make -j2 fw_resource
- make -j2 gcs
git:
depth: 500
cache: ccache