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.
2 parents 40b641b + a67e798 commit b647b6eCopy full SHA for b647b6e
collector/collect.sh
@@ -13,6 +13,10 @@ while : ; do
13
# Update and rebuild the collector.
14
git pull
15
git reset --hard @{upstream}
16
+
17
+ # Make sure we have a recent build, so that we can successfully build
18
+ # the collector.
19
+ rustup update
20
cargo +nightly build --release -p collector
21
22
# Install measureme tooling
@@ -28,4 +32,7 @@ while : ; do
28
32
29
33
target/release/collector bench_next $SITE_URL --self-profile --bench-rustc --db $DATABASE;
30
34
echo finished run at `date`;
35
36
+ # Wait a little bit before the next run starts.
37
+ sleep 120
31
38
done
0 commit comments