diff --git a/travis/cpuinfo.sh b/travis/cpuinfo.sh index 33f5b7b84d..9ffc7f53b9 100755 --- a/travis/cpuinfo.sh +++ b/travis/cpuinfo.sh @@ -1,9 +1,11 @@ #!/usr/bin/env bash -git clone https://github.com/pytorch/cpuinfo +git -q clone https://github.com/pytorch/cpuinfo cd cpuinfo mkdir build && cd build -cmake .. -make -j3 +cmake .. >& cmake.log +tail -f cmake.log +make -j3 >& make.log +tail -3 make.log ./isa-info ./cpu-info cd ../..