mbed-os/.travis.yml

35 lines
1.1 KiB
YAML
Raw Normal View History

python:
- "2.7"
2016-06-22 00:09:15 +00:00
script:
2017-06-01 19:01:35 +00:00
- mkdir BUILD && doxygen doxyfile_options
- |
[ -z "`doxygen doxyfile_options 2>&1`" ]
- find -name "*.a" -and -not -name "lib*.a"
- |
[ -z '`find -name "*.a" -and -not -name "lib*.a"`' ]
2016-11-21 18:25:14 +00:00
- make -C events/equeue test clean
2016-06-22 00:09:15 +00:00
- PYTHONPATH=. python tools/test/config_test/config_test.py
2016-09-29 18:38:20 +00:00
- PYTHONPATH=. python tools/test/build_api/build_api_test.py
- PYTHONPATH=. python tools/test/targets/target_test.py
2016-08-15 22:16:56 +00:00
- python tools/test/pylint.py
- py.test tools/test/toolchains/api.py
- python tools/test/memap/memap_test.py
- python tools/project.py -S
2016-06-22 00:09:15 +00:00
- python tools/build_travis.py
before_install:
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
2017-06-01 19:01:35 +00:00
- sudo add-apt-repository -y ppa:libreoffice/libreoffice-4-2
- sudo apt-get update -qq
2017-06-01 19:01:35 +00:00
- sudo apt-get install -qq gcc-arm-none-eabi doxygen --force-yes
# Print versions we use
- arm-none-eabi-gcc --version
- python --version
2017-06-01 19:01:35 +00:00
- doxygen --version
install:
- sudo pip install -r requirements.txt
- sudo pip install pytest
2016-08-15 22:16:56 +00:00
- sudo pip install pylint
- sudo pip install hypothesis
2016-09-29 18:38:20 +00:00
- sudo pip install mock