File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 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:
7575```
7676./target/release/site $RUSTC_TIMING # or $OUTPUT_DIR
7777```
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.
7981
8082Note that all benchmark data processing happens when the website is started. If
8183additional 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:
4343```
4444cargo run --release data
4545```
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 {
225225 }
226226
227227 let last_date = last_date. expect ( "No dates found" ) ;
228+ println ! ( "Updating rust.git clone..." ) ;
228229 let commits = rust_sysroot:: get_commits ( rust_sysroot:: EPOCH_COMMIT , "master" ) . map_err ( SyncFailure :: new) ?;
230+ println ! ( "Update of rust.git complete" ) ;
229231
230232 Ok ( InputData {
231233 crate_list : crate_list,
You can’t perform that action at this time.
0 commit comments