Skip to content

Commit 40e0e3b

Browse files
author
Andrey Senyaev
committed
Fixed aarch64 openblas installation
1 parent 3c1ea44 commit 40e0e3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

travis_config.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ function pre_build {
9595
if [ -n "$IS_OSX" ]; then
9696
brew install lapack
9797
else
98-
yum install -y lapack-devel openblas-devel
98+
# epel-release need for aarch64 to get openblas packages
99+
yum install -y lapack-devel epel-release && yum install -y openblas-devel
99100
cp /usr/include/lapacke/lapacke*.h /usr/include/
100101
curl https://raw.githubusercontent.com/xianyi/OpenBLAS/v0.3.3/cblas.h -o /usr/include/cblas.h
101102
fi

0 commit comments

Comments
 (0)