We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1853e11 commit 9c24608Copy full SHA for 9c24608
src/ci/scripts/collect-cpu-stats.sh
@@ -6,4 +6,5 @@
6
set -euo pipefail
7
IFS=$'\n\t'
8
9
-python3 src/ci/cpu-usage-over-time.py &> cpu-usage.csv &
+mkdir -p build
10
+python3 src/ci/cpu-usage-over-time.py &> build/cpu-usage.csv &
src/ci/scripts/upload-artifacts.sh
@@ -23,7 +23,7 @@ if [[ "${DEPLOY-0}" -eq "1" ]] || [[ "${DEPLOY_ALT-0}" -eq "1" ]]; then
23
fi
24
25
# CPU usage statistics.
26
-cp cpu-usage.csv "${upload_dir}/cpu-${CI_JOB_NAME}.csv"
+cp build/cpu-usage.csv "${upload_dir}/cpu-${CI_JOB_NAME}.csv"
27
28
# Build metrics generated by x.py.
29
cp "${build_dir}/metrics.json" "${upload_dir}/metrics-${CI_JOB_NAME}.json"
0 commit comments