Radish alpha
r
rad:z3qg5TKmN83afz2fj9z3fQjU8vaYE
Radicle CI adapter for native CI
Radicle
Git
drop useless reporting
Lars Wirzenius committed 2 years ago
commit e3007d48a9a5418b1a8404c1b9d3cf5ac1849b0d
parent 3af3edf
1 file changed +0 -4
modified src/report.rs
@@ -14,10 +14,6 @@ const CSS: &str = include_str!("native-ci.css");
pub fn build_report(log: &mut LogFile, state: &Path) -> Result<(), ReportError> {
    let mut run_infos = collect_run_infos(state)?;
    run_infos.sort_by(|a, b| a.timestamp.partial_cmp(&b.timestamp).unwrap());
-
    for ri in run_infos.iter() {
-
        log.write(format!("found run info {}\n", ri.run_info.display()))
-
            .unwrap();
-
    }

    let repos = repositories(&run_infos);
    let doc = list_runs(&repos, &run_infos);