1language: c
2compiler:
3- clang
4- gcc
5sudo: false
6cache: ccache
7script:
8- tests/scripts/recursion.pl library/*.c
9- tests/scripts/check-generated-files.sh
10- tests/scripts/check-doxy-blocks.pl
11- tests/scripts/check-names.sh
12- tests/scripts/doxygen.sh
13- cmake -D CMAKE_BUILD_TYPE:String="Check" .
14- make
15- make test
16- programs/test/selftest
17- OSSL_NO_DTLS=1 tests/compat.sh
18- tests/ssl-opt.sh -e '\(DTLS\|SCSV\).*openssl'
19- tests/scripts/test-ref-configs.pl
20- tests/scripts/curves.pl
21- tests/scripts/key-exchanges.pl
22after_failure:
23- tests/scripts/travis-log-failure.sh
24env:
25  global:
26    secure: "barHldniAfXyoWOD/vcO+E6/Xm4fmcaUoC9BeKW+LwsHqlDMLvugaJnmLXkSpkbYhVL61Hzf3bo0KPJn88AFc5Rkf8oYHPjH4adMnVXkf3B9ghHCgznqHsAH3choo6tnPxaFgOwOYmLGb382nQxfE5lUdvnM/W/psQjWt66A1+k="
27
28addons:
29  apt:
30    packages:
31    - doxygen
32    - graphviz
33  coverity_scan:
34    project:
35      name: "ARMmbed/mbedtls"
36    notification_email: p.j.bakker@polarssl.org
37    build_command_prepend:
38    build_command: make
39    branch_pattern: coverity_scan
40