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

Commit 0d35b7c

Browse files
committed
travis: use new ROOT builds
1 parent 21d8df4 commit 0d35b7c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python:
44
- "2.7"
55
- "3.4"
66
env:
7-
- ROOT=v5-34-18
7+
- ROOT=5.34.18
88
- ROOT=master COVERAGE=1
99
install: source ci/install.sh
1010
script: bash ci/test.sh

ci/install.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ sudo apt-get -qq install python-nose python-pip
1717
pip install coverage coveralls
1818

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

0 commit comments

Comments
 (0)