7
7
# commit SHA of the build you're interested in, and the second is the name of
8
8
# the builder. For example:
9
9
#
10
- # ./src/etc/cpu-usage-over-time-plot.sh e699ea096fcc2fc9ce8e8bcf884e11496a31cc9f i686-mingw-1
10
+ # ./src/etc/cpu-usage-over-time-plot.sh 7737e0b5c4103216d6fd8cf941b7ab9bdbaace7c x86_64-gnu
11
11
#
12
12
# That will generate `$builder.png` in the current directory which you can open
13
13
# up to see a hopefully pretty graph.
14
14
#
15
15
# Improvements to this script are greatly appreciated!
16
16
17
+ if [[ $# != 2 ]]; then
18
+ echo " expected 2 arguments, recieved $# "
19
+ echo " example usage: './src/etc/cpu-usage-over-time-plot.sh \
20
+ 7737e0b5c4103216d6fd8cf941b7ab9bdbaace7c \
21
+ x86_64-gnu'"
22
+ exit 1
23
+ fi
24
+
17
25
set -ex
18
26
19
27
bucket=rust-lang-ci2
@@ -30,7 +38,7 @@ set ylabel "CPU Usage %"
30
38
set xlabel "Time"
31
39
set datafile sep ','
32
40
set term png size 3000,1000
33
- set output "$builder .png"
41
+ set output "$builder - $commit -cpu-usage-plot .png"
34
42
set grid
35
43
36
44
f(x) = mean_y
@@ -43,7 +51,9 @@ set ytics 10
43
51
set boxwidth 0.5
44
52
45
53
plot \\
46
- mean_y with lines linetype 1 linecolor rgb "#ff0000" title "average", \\
47
- "cpu- $builder .csv" using 1:(100-\$ 2) with points pointtype 7 pointsize 0.4 title "$builder ", \\
48
- "" using 1:(100-\$ 2) smooth bezier linewidth 3 title "bezier"
54
+ mean_y with lines linetype 1 linecolor rgb "#ff0000" title "average", "cpu- $builder .csv" \\
55
+ using 1:(100-\$ 2) with points pointtype 7 pointsize 0.4 title "$builder ", "" \\
56
+ using 1:(100-\$ 2) smooth bezier linewidth 3 title "bezier"
49
57
EOF
58
+
59
+ rm " cpu-$builder .csv"
0 commit comments