From feb26692d42f9ef20c47ed53f46308c092bc0af4 Mon Sep 17 00:00:00 2001 From: Meeh Date: Thu, 3 Apr 2014 17:30:29 +0200 Subject: [PATCH] Adding initial travis file. --- .travis.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..a8ae739d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,34 @@ +language: cpp +matrix: + allow_failures: + - compiler: clang +compiler: + - gcc + - clang +cache: + - apt +branches: + only: + - master +before_install: + - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test # GCC 4.7 + - sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ quantal main universe" # Boost 1.50 + - sudo apt-get update -qq + - sudo apt-get install -qq libboost1.50-all-dev libcrypto++9 libcrypto++-dev +script: + - make +notifications: + email: + recipients: + - meeh@sigterm.no + on_success: change + on_failure: change + irc: + channels: + - "irc.freenode.net#i2p-dev" + template: + - "%{repository}/%{branch} (%{commit} - %{author}): %{message}" + on_failure: change + on_success: change + +