https://github.com/seqan/seqan
Raw File
Tip revision: a046ae107a83f154cae4dfaf8c3287983cd6e91d authored by Enrico Siragusa on 29 January 2015, 09:50:55 UTC
Merge pull request #810 from esiragusa/fix/yara/misc
Tip revision: a046ae1
.travis.yml
language: cpp
compiler:
  - gcc-4.8
  - clang
cache:
  apt: true
  directories:
  - _build
before_script:
  - sudo apt-get install -qq cmake python python-nose zlib1g-dev libbz2-dev libboost-dev python-jinja2 python-pip
  - sudo pip install -r manual/requirements.txt
  - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test;
    sudo apt-get update -qq;
    sudo apt-get install -qq gcc-4.8 g++-4.8;
    if [ "$CC" == "gcc" ];
    then
      export CXX=g++-4.8 CC=gcc-4.8;
      gcc-4.8 --version;
    fi
script:
  ./util/travis/linux-cibuild.sh
back to top