Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
use gcc 4.9 and include ROOT 6
Browse files Browse the repository at this point in the history
  • Loading branch information
ndawe committed Mar 31, 2015
1 parent 83b0a41 commit 56f6d7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -4,7 +4,8 @@ python:
- "2.7"
- "3.4"
env:
- ROOT=5-34-18
- ROOT=v5-34-18
- ROOT=master
install: source ci/install.sh
script: bash ci/test.sh
after_success:
Expand Down
10 changes: 5 additions & 5 deletions ci/install.sh
Expand Up @@ -8,13 +8,13 @@ set -e

sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get -qq update
sudo apt-get -qq install g++-4.8
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
sudo apt-get -qq install g++-4.9
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 90
sudo apt-get -qq install python-nose python-pip
pip install coverage coveralls

# Install the ROOT binary
time wget --no-check-certificate https://copy.com/rtIyUdxgjt7h/ci/root_builds/rootv${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.8_x86_64.tar.gz
time tar zxf rootv${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.8_x86_64.tar.gz
mv rootv${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.8_x86_64 root
time wget --no-check-certificate https://copy.com/rtIyUdxgjt7h/ci/root_builds/root${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.9.2_x86_64.tar.gz
time tar zxf root${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.9.2_x86_64.tar.gz
mv root${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.9.2_x86_64 root
source root/bin/thisroot.sh

0 comments on commit 56f6d7c

Please sign in to comment.