]> git.lizzy.rs Git - rust.git/blob - src/ci/scripts/collect-cpu-stats.sh
Rollup merge of #81797 - yoshuawuyts:stream_from_iter, r=dtolnay
[rust.git] / src / ci / scripts / collect-cpu-stats.sh
1 #!/bin/bash
2 # Spawn a background process to collect CPU usage statistics which we'll upload
3 # at the end of the build. See the comments in the script here for more
4 # information.
5
6 set -euo pipefail
7 IFS=$'\n\t'
8
9 python3 src/ci/cpu-usage-over-time.py &> cpu-usage.csv &