https://github.com/shaunharker/DSGRN
Raw File
Tip revision: df5e272531071df6f61d90f86500a7df237f9b74 authored by Shaun Harker on 06 December 2018, 03:57:51 UTC
fixes #43
Tip revision: df5e272
.travis.yml
sudo: false
before_install:
  - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
language: cpp
compiler:
  - gcc
addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - gcc-4.9
      - g++-4.9
notifications:
  email:
    recipients:
      - sharker81@gmail.com
    on_success: change
    on_failure: always
# before_install:
#   - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
#   - PREFIX=$HOME/.local
#   - export PATH=$PREFIX/bin:$PATH
# install:
#   - pip install cpp-coveralls --user
script: 
  - pip install tornado==4.5.3 --user # up-to-date tornado breaking Travis CI builds 2018-03-30
  - git submodule update --init --recursive
  - pip install . --user
# after_success: 
#   - coveralls -e "include/Tools/SHA256.h" -e "include/Tools/sqlambda.h" -e "include/Tools/json.hpp" -e tests -E ".*lib.*" -E ".*usr.*" -E ".*boost.*" --gcov-options '\-lp' --gcov /usr/bin/gcov-4.8
back to top