2014-04-17 14:16:05 +00:00
|
|
|
language: c
|
2020-04-21 20:13:43 +00:00
|
|
|
compiler: gcc
|
2015-08-04 13:59:34 +00:00
|
|
|
sudo: false
|
2015-08-04 16:06:02 +00:00
|
|
|
cache: ccache
|
2018-11-22 10:14:03 +00:00
|
|
|
|
2020-04-21 20:18:58 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- name: basic checks
|
2020-04-23 21:45:55 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2020-04-25 21:36:00 +00:00
|
|
|
- gnutls-bin
|
2020-04-23 21:45:55 +00:00
|
|
|
- doxygen
|
|
|
|
- graphviz
|
2020-04-25 20:30:31 +00:00
|
|
|
- gcc-arm-none-eabi
|
|
|
|
- libnewlib-arm-none-eabi
|
2020-04-25 19:15:07 +00:00
|
|
|
language: python # Needed to get pip for Python 3
|
|
|
|
python: 3.5 # version from Ubuntu 16.04
|
|
|
|
install:
|
|
|
|
- pip install pylint==2.4.4
|
2020-04-21 20:18:58 +00:00
|
|
|
script:
|
2020-04-21 20:23:35 +00:00
|
|
|
- tests/scripts/all.sh -k 'check_*'
|
2020-04-25 19:31:04 +00:00
|
|
|
- tests/scripts/all.sh -k test_default_out_of_box
|
2020-04-25 20:30:31 +00:00
|
|
|
- tests/scripts/all.sh -k build_arm_none_eabi_gcc_arm5vte
|
2020-04-21 20:18:58 +00:00
|
|
|
|
2020-04-25 19:31:04 +00:00
|
|
|
- name: full configuration
|
2020-04-21 20:18:58 +00:00
|
|
|
script:
|
2020-04-25 19:31:04 +00:00
|
|
|
- tests/scripts/all.sh -k test_full_cmake_gcc_asan
|
2020-04-21 20:18:58 +00:00
|
|
|
|
|
|
|
- name: enumerated configurations
|
|
|
|
script:
|
|
|
|
- tests/scripts/test-ref-configs.pl
|
2020-04-25 19:46:42 +00:00
|
|
|
- tests/scripts/all.sh -k 'test_depends_*' 'build_key_exchanges'
|
2020-04-21 20:18:58 +00:00
|
|
|
|
2020-04-25 20:42:41 +00:00
|
|
|
- name: macOS
|
|
|
|
os: osx
|
|
|
|
compiler: clang
|
|
|
|
script:
|
|
|
|
- tests/scripts/all.sh -k test_default_out_of_box
|
|
|
|
|
2016-03-21 09:22:58 +00:00
|
|
|
after_failure:
|
2016-04-10 14:11:27 +00:00
|
|
|
- tests/scripts/travis-log-failure.sh
|
2020-04-21 20:18:58 +00:00
|
|
|
|
2014-05-02 14:19:04 +00:00
|
|
|
env:
|
|
|
|
global:
|
2019-02-27 09:46:56 +00:00
|
|
|
- SEED=1
|
2019-09-10 16:22:52 +00:00
|
|
|
- secure: "FrI5d2s+ckckC17T66c8jm2jV6i2DkBPU5nyWzwbedjmEBeocREfQLd/x8yKpPzLDz7ghOvr+/GQvsPPn0dVkGlNzm3Q+hGHc/ujnASuUtGrcuMM+0ALnJ3k4rFr9xEvjJeWb4SmhJO5UCAZYvTItW4k7+bj9L+R6lt3TzQbXzg="
|
2014-05-02 14:19:04 +00:00
|
|
|
|
|
|
|
addons:
|
2020-04-25 21:36:00 +00:00
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- gnutls-bin
|
2014-05-02 14:19:04 +00:00
|
|
|
coverity_scan:
|
|
|
|
project:
|
2015-04-14 12:59:47 +00:00
|
|
|
name: "ARMmbed/mbedtls"
|
2019-09-10 16:36:23 +00:00
|
|
|
notification_email: support-mbedtls@arm.com
|
2014-05-02 14:19:04 +00:00
|
|
|
build_command_prepend:
|
|
|
|
build_command: make
|
2015-04-14 12:59:47 +00:00
|
|
|
branch_pattern: coverity_scan
|