From 419bcc06ce2dc01f35cfd513343026d899db7d97 Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Thu, 14 Mar 2019 19:30:06 +1030 Subject: [PATCH] travis: report OpenBLAS version and cpuinfo always --- .travis/linux/OpenBLAS/install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis/linux/OpenBLAS/install.sh b/.travis/linux/OpenBLAS/install.sh index ee74f96d..416fe67c 100644 --- a/.travis/linux/OpenBLAS/install.sh +++ b/.travis/linux/OpenBLAS/install.sh @@ -29,12 +29,15 @@ if [ ! -e ${CACHE_DIR}/last_commit_id ]; then git clone --depth=1 git://github.com/xianyi/OpenBLAS pushd OpenBLAS - echo OpenBLAS version:$(git rev-parse HEAD) make FC=gfortran &> /dev/null && make PREFIX=${CACHE_DIR} install echo $(git rev-parse HEAD) > ${CACHE_DIR}/last_commit_id popd fi +# Instrument the build state +echo OpenBLAS version:$(cat ${CACHE_DIR}/last_commit_id) +cat /proc/cpuinfo + # copy the cache files into /usr sudo cp -r ${CACHE_DIR}/* /usr/