forked from Archive/PX4-Autopilot
16 lines
267 B
YAML
16 lines
267 B
YAML
|
language: cpp
|
||
|
sudo: required
|
||
|
compiler: g++
|
||
|
|
||
|
before_install:
|
||
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||
|
- sudo apt-get update -qq
|
||
|
|
||
|
install:
|
||
|
- sudo apt-get install -qq g++-4.8
|
||
|
- export CXX="g++-4.8"
|
||
|
|
||
|
before_script:
|
||
|
- chmod +x build.sh
|
||
|
|
||
|
script: ./build.sh
|