mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-13 00:07:39 +01:00
Adding initial travis file.
This commit is contained in:
parent
70bf83f127
commit
feb26692d4
1 changed files with 34 additions and 0 deletions
34
.travis.yml
Normal file
34
.travis.yml
Normal file
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue