From c34f6ed7696dcefdbc62ddb8da7ae0a1bc0d3324 Mon Sep 17 00:00:00 2001 From: edoapra Date: Fri, 21 Mar 2025 15:41:34 -0700 Subject: [PATCH] quiet --- travis/cpuinfo.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 ../..