From 026c794a9279b3b764f9101f4e410c25793c69c1 Mon Sep 17 00:00:00 2001 From: acxz <17132214+acxz@users.noreply.github.com> Date: Thu, 26 Mar 2020 16:32:05 -0400 Subject: [PATCH] use the same tbb as xenial --- .travis.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.sh b/.travis.sh index 9ff1f22cd..5db84e1e5 100755 --- a/.travis.sh +++ b/.travis.sh @@ -3,13 +3,14 @@ # install TBB with _debug.so files function install_tbb() { - wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.5/tbb44_20160526oss_lin.tgz - if [ $(uname -s) == "Linux"]; then - tar -xvf tbb44_20160526oss_lin.tgz - elif [ $(uname -s) == "Linux" ]; then - tar -xvf tbb44_20160526oss_mac.tgz + if [ $(uname -s) == "Linux" ]; then + wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.2/tbb44_20151115oss_lin.tgz + tar -xvf tbb44_20151115oss_lin.tgz + elif [ $(uname -s) == "Darwin" ]; then + wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.2/tbb44_20151115oss_osx.tgz + tar -xvf tbb44_20151115oss_osx.tgz fi - source tbb44_20160526oss/bin/tbbvars.sh intel64 linux auto_tbbroot + source tbb44_20151115oss/bin/tbbvars.sh intel64 linux auto_tbbroot } # common tasks before either build or test