You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
997 B

11 years ago
7 years ago
8 years ago
8 years ago
11 years ago
  1. sudo: true
  2. language: c
  3. compiler:
  4. - gcc
  5. - clang
  6. env:
  7. global:
  8. - LIBSODIUM_VER=1.0.11
  9. - MBEDTLS_VER=2.4.0
  10. before_install:
  11. - wget https://github.com/jedisct1/libsodium/releases/download/1.0.11/libsodium-$LIBSODIUM_VER.tar.gz
  12. - tar xvf libsodium-$LIBSODIUM_VER.tar.gz
  13. - pushd libsodium-$LIBSODIUM_VER
  14. - ./configure --prefix=/usr && make
  15. - sudo make install
  16. - popd
  17. - wget https://tls.mbed.org/download/mbedtls-$MBEDTLS_VER-gpl.tgz
  18. - tar xvf mbedtls-$MBEDTLS_VER-gpl.tgz
  19. - pushd mbedtls-$MBEDTLS_VER
  20. - make
  21. - sudo make install
  22. - popd
  23. addons:
  24. apt:
  25. packages:
  26. - autoconf
  27. - autotools-dev
  28. - libudns-dev
  29. - libev-dev
  30. - asciidoc
  31. - xmlto
  32. script:
  33. - ./autogen.sh
  34. - ./configure && make
  35. branches:
  36. only:
  37. - master
  38. notifications:
  39. recipients:
  40. - max.c.lv@gmail.com
  41. email:
  42. on_success: change
  43. on_failure: always