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

Commit

Permalink
travis: use new ROOT builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ndawe committed May 19, 2015
1 parent 21d8df4 commit 0d35b7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python:
- "2.7"
- "3.4"
env:
- ROOT=v5-34-18
- ROOT=5.34.18
- ROOT=master COVERAGE=1
install: source ci/install.sh
script: bash ci/test.sh
Expand Down
10 changes: 5 additions & 5 deletions ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ sudo apt-get -qq install python-nose python-pip
pip install coverage coveralls

# Install the ROOT binary
build=root${ROOT}_python${TRAVIS_PYTHON_VERSION}_gcc4.8_x86_64
ROOT_BUILD=ROOT-${ROOT}_Python-${TRAVIS_PYTHON_VERSION}_GCC-4.8_x86_64
if [ ! -z ${NOTMVA+x} ]; then
# Use a build without TMVA
build+=_notmva
ROOT_BUILD+=_notmva
fi
time wget --no-check-certificate https://copy.com/rtIyUdxgjt7h/ci/root_builds/${build}.tar.gz
time tar zxf ${build}.tar.gz
mv ${build} root
time wget --no-check-certificate https://copy.com/rtIyUdxgjt7h/ci/root_builds/${ROOT_BUILD}.tar.gz
time tar zxf ${ROOT_BUILD}.tar.gz
mv ${ROOT_BUILD} root
source root/bin/thisroot.sh

0 comments on commit 0d35b7c

Please sign in to comment.