Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ci/scripts/go_bench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ pushd ${source_dir}
go test -bench=. -benchmem -run=^$ ./... | tee bench_stat.dat

if verlte "1.18" "${ver#go}"; then
go test -bench=. -benchmem -run=^$ ./arrow/compute | tee bench_stat_compute.dat
# lots of benchmarks, they can take a while
# the timeout is for *ALL* benchmarks together,
# not per benchmark
go test -timeout 20m -bench=. -benchmem -run=^$ ./arrow/compute | tee bench_stat_compute.dat
fi

popd
Expand Down