Skip to content
Snippets Groups Projects
.travis.yml 530 B
Newer Older
os: linux
compiler: gcc
language: cpp
before_install:
  - sudo apt-get update -qq
  - sudo apt-get autoremove
  - sudo pip install --egg scons
  - wget https://root.cern.ch/download/root_v6.10.02.Linux-ubuntu14-x86_64-gcc4.8.tar.gz -O /tmp/root.tar.gz
  - pwd
  - tar -xzf /tmp/root.tar.gz
  - source ./root/bin/thisroot.sh
  - source ./setup.sh
script:  scons
branches:
  only:
    - develop
notifications:
  email:
    recipients: saw@jlab.org
    on_success: always
    on_failure: always