File tree 3 files changed +10
-1
lines changed
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,9 @@ Once the benchmarks have been run, start the website:
75
75
```
76
76
./target/release/site $RUSTC_TIMING # or $OUTPUT_DIR
77
77
```
78
- and navigate to localhost:2346 in a web browser.
78
+ and navigate to localhost:2346 in a web browser. The first time you do this the
79
+ Rust repo is cloned, so it will take a minute or two (or more if you have a
80
+ slow internet connection) before the web server starts up.
79
81
80
82
Note that all benchmark data processing happens when the website is started. If
81
83
additional benchmark runs subsequently occur you must restart the website to
Original file line number Diff line number Diff line change @@ -43,3 +43,8 @@ It can be run with the following command:
43
43
```
44
44
cargo run --release data
45
45
```
46
+
47
+ The first time you do this the Rust repo is cloned, so it will take a minute or
48
+ two (or more if you have a slow internet connection) before the web server
49
+ starts up.
50
+
Original file line number Diff line number Diff line change @@ -225,7 +225,9 @@ impl InputData {
225
225
}
226
226
227
227
let last_date = last_date. expect ( "No dates found" ) ;
228
+ println ! ( "Updating rust.git clone..." ) ;
228
229
let commits = rust_sysroot:: get_commits ( rust_sysroot:: EPOCH_COMMIT , "master" ) . map_err ( SyncFailure :: new) ?;
230
+ println ! ( "Update of rust.git complete" ) ;
229
231
230
232
Ok ( InputData {
231
233
crate_list : crate_list,
You can’t perform that action at this time.
0 commit comments