Remove notify dependencies

This commit is contained in:
2018-10-11 17:26:40 +02:00
parent 07509cbf75
commit 3c79c4c113
4 changed files with 8 additions and 432 deletions

View File

@@ -11,7 +11,7 @@ fn main()
{
pretty_env_logger::init();
let mut benchmark_repository = BenchmarkRepository::new("git@git.luehne.de:patrick/tplp-planning-benchmark.git", Path::new("storage"), "git", "Potassco Bot", "bot@potassco.org");
let benchmark_repository = BenchmarkRepository::new("git@git.luehne.de:patrick/tplp-planning-benchmark.git", Path::new("storage"), "git", "Potassco Bot", "bot@potassco.org");
let content = benchmark_repository.read_file(Path::new("configurations.yml"), "config").unwrap();
let configurations = &YamlLoader::load_from_str(&content).unwrap()[0]["configurations"];
@@ -40,13 +40,8 @@ fn main()
continue;
}
let test = benchmark_repository.create_autocommit_directory(Path::new(&file_name_base), "results").unwrap();
println!("{}", test.display());
println!("to do: [{}, {}, {}/{}/{}]", configuration_id, instance_set_id, instance_ipc, instance_domain, instance_number);
}
}
}
benchmark_repository.wait_for_autocommit_thread();
}