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.

36 lines
764 B

11 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. before_install:
  10. - wget https://download.libsodium.org/libsodium/releases/libsodium-$LIBSODIUM_VER.tar.gz
  11. - tar xvf libsodium-$LIBSODIUM_VER.tar.gz
  12. - pushd libsodium-$LIBSODIUM_VER
  13. - ./configure --prefix=/usr && make
  14. - sudo make install
  15. - popd
  16. addons:
  17. apt:
  18. packages:
  19. - autoconf
  20. - autotools-dev
  21. - libudns-dev
  22. - libev-dev
  23. - asciidoc
  24. - xmlto
  25. script:
  26. - ./autogen.sh
  27. - ./configure && make
  28. branches:
  29. only:
  30. - master
  31. notifications:
  32. recipients:
  33. - max.c.lv@gmail.com
  34. email:
  35. on_success: change
  36. on_failure: always