rt-thread/.travis.yml

21 lines
445 B
YAML
Raw Normal View History

2013-01-03 23:09:27 +08:00
language: c
install:
- mkdir ~/toolchain
2013-01-20 21:51:20 +08:00
- "[ $RTT_CPU = 'arm' ] && curl -s https://sourcery.mentor.com/public/gnu_toolchain/arm-none-eabi/arm-2011.03-42-arm-none-eabi-i686-pc-linux-gnu.tar.bz2 | tar xjf - -C ~/toolchain"
2013-01-03 23:09:27 +08:00
before_script:
- export RTT_EXEC_PATH=~/toolchain/arm-2011.03/bin
- export RTT_ROOT=`pwd`
2013-01-20 21:51:20 +08:00
- export RTT_CC='gcc'
2013-01-03 23:09:27 +08:00
- cd tools
script:
- python auto-ci.py
notifications:
email: false
env:
2013-01-20 21:51:20 +08:00
- RTT_CPU='arm'