diff options
| author | langerhans <[email protected]> | 2014-05-02 22:27:41 +0200 |
|---|---|---|
| committer | langerhans <[email protected]> | 2014-05-02 22:27:41 +0200 |
| commit | 3062044ecf66acd13d3ab31329e1fcde2ad0212c (patch) | |
| tree | a05acc13414841dfaec4a64dcd244866bea7c247 | |
| parent | Merge pull request #493 from rnicoll/1.7-dev-rc (diff) | |
| parent | add ccache to Travis config (diff) | |
| download | discoin-3062044ecf66acd13d3ab31329e1fcde2ad0212c.tar.xz discoin-3062044ecf66acd13d3ab31329e1fcde2ad0212c.zip | |
Merge pull request #497 from leofidus/travis-nowallet
Add travis check for disable-wallet compile mode
| -rw-r--r-- | .travis.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 0fe38fa1f..0dc3e5473 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,16 +4,22 @@ 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 build-essential libtool autotools-dev autoconf libssl-dev pkg-config ccache - 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 + - mkdir $HOME/.ccache + - export CCACHE_DIR=$HOME/.ccache + - ccache -M 1G script: - ./autogen.sh - - ./configure CFLAGS="-O3" + - CFLAGS="-O1" CXXFLAGS="-O1" ./configure + - make -j 2 + - make check + - make clean + - CFLAGS="-O1" CXXFLAGS="-O1" ./configure --disable-wallet - make -j 2 - - cd ./src - make check notifications: irc: |