dogecoin/.travis.yml
Patrick Lodder 888dd5be27 Fix travis setup
- removed after_install section
- using 'make check' now
2014-04-18 00:05:54 +04:00

24 lines
769 B
YAML

language: cpp
cache: apt
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install build-essential libtool autotools-dev autoconf libssl-dev pkg-config
- sudo apt-get install libboost1.48-dev libboost-chrono1.48-dev libboost-filesystem1.48-dev libboost-program-options1.48-dev libboost-system1.48-dev libboost-test1.48-dev libboost-thread1.48-dev
- sudo apt-get install libdb++-dev
- sudo apt-get install libqt4-dev
- sudo apt-get install libprotobuf-dev protobuf-compiler
script:
- ./autogen.sh
- ./configure CFLAGS="-O3"
- make -j 2
- cd ./src
- make check
notifications:
irc:
channels:
- "chat.freenode.net#dogecoin-dev"
template:
- "%{repository}/%{branch} (%{commit} - %{author}): %{message}"