mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5353ed663d
installing the c++ headers when installing the stock cross-compiler
45 lines
2.0 KiB
YAML
45 lines
2.0 KiB
YAML
language: c
|
|
|
|
env:
|
|
- NPROC_MAX=8
|
|
|
|
before_install:
|
|
- sudo apt-get install emdebian-archive-keyring
|
|
- echo 'deb http://www.emdebian.org/debian wheezy main' | sudo tee /etc/apt/sources.list.d/emdebian.list > /dev/null
|
|
|
|
- echo 'deb http://us.archive.ubuntu.com/ubuntu trusty main restricted universe multiverse' | sudo tee /etc/apt/sources.list.d/trusty.list > /dev/null
|
|
- echo 'deb http://us.archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' | sudo tee -a /etc/apt/sources.list.d/trusty.list > /dev/null
|
|
- echo 'deb http://us.archive.ubuntu.com/ubuntu trusty-security main restricted universe multiverse' | sudo tee -a /etc/apt/sources.list.d/trusty.list > /dev/null
|
|
- echo 'deb http://us.archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse' | sudo tee -a /etc/apt/sources.list.d/trusty.list > /dev/null
|
|
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
|
|
- sudo apt-get update
|
|
|
|
install:
|
|
- sudo apt-get install build-essential
|
|
- sudo apt-get install gcc-multilib
|
|
#TODO: remove the `=4-*` if the stock gcc-arm-none-eabi ships the missing c++ headers (cf. #1656)
|
|
- sudo apt-get install gcc-arm-none-eabi=4-*
|
|
- sudo apt-get install gcc-msp430
|
|
- sudo apt-get install pcregrep libpcre3
|
|
- sudo apt-get install qemu-system-x86 python3
|
|
- sudo apt-get install g++-multilib
|
|
- sudo apt-get install gcc-avr binutils-avr avr-libc
|
|
- git config --global user.email "travis@example.com"
|
|
- git config --global user.name "Travis CI"
|
|
|
|
- git remote add riot https://github.com/RIOT-OS/RIOT.git
|
|
- git fetch riot master
|
|
- git log -1 --pretty=format:%H riot/master
|
|
|
|
script:
|
|
- make -s -C ./examples/default info-concurrency
|
|
- git rebase riot/master || git rebase --abort
|
|
|
|
- ./dist/tools/compile_test/compile_test.py
|
|
- make -C ./tests/unittests test BOARD=native
|
|
- make -C ./tests/unittests test BOARD=qemu-i386
|
|
- ./dist/tools/licenses/check.sh master
|
|
|
|
notifications:
|
|
email: false
|