summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 11d399e61105ee8122396c6cbba60043f0bd9ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Since the Travis CI environment http://docs.travis-ci.com/user/ci-environment/
# provides GNU GCC 4.6, which does not support -std=c++11 GNU GCC 4.8 is installed

language: cpp
compiler:
  - clang
  - gcc

before_install:
    # Add software package repositories with recent versions of gcc and boost
  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes
  - sudo add-apt-repository ppa:boost-latest/ppa --yes
  - sudo apt-get update -qq

install: 
    # Install GNU GCC 4.8 required by use of C++11
  - sudo apt-get install -qq g++-4.8 gcc-4.8
  - export CXX="g++-4.8" CC="gcc-4.8"
    # Install Ledger dependencies
  - sudo apt-get install -qq libboost1.55 libgmp-dev libmpfr-dev libeditline-dev

before_script:
  - export JOBS=2
  - ./acprep opt make --jobs $JOBS --python

script:
  - ./acprep check --jobs $JOBS -- --output-on-failure
  - PYTHONPATH=. python python/demo.py

notifications:
  email:
    on_success: change
    on_failure: change
  irc: "chat.freenode.net#ledger"