This commit is contained in:
2018-09-27 15:14:57 +02:00
parent 2af028acae
commit 7e4850801e
4 changed files with 376 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ fn main()
{
pretty_env_logger::init();
let benchmark_repository = BenchmarkRepository::new("git@git.luehne.de:patrick/tplp-planning-benchmark.git", Path::new("storage"), "git", "Potassco Bot", "bot@potassco.org");
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 files = vec!
[
@@ -40,13 +40,18 @@ fn main()
let instance_domain = instance["domain"].as_str().unwrap();
let instance_number = instance["instance"].as_i64().unwrap();
let file_name = format!("{}/{}/{}", instance_ipc, instance_domain, instance_number);
let file_name_base = format!("{}/{}_{}_{}", configuration_id, instance_ipc, instance_domain, instance_number);
let file_name_output = format!("{}.out", file_name_base);
if (benchmark_repository.file_exists(Path::new(&file_name), "test-results"))
if (benchmark_repository.file_exists(Path::new(&file_name_output), "test-results"))
{
println!("done: [{}, {}, {}/{}/{}]", configuration_id, instance_set_id, instance_ipc, instance_domain, instance_number);
continue;
}
let test = benchmark_repository.create_autocommit_directory(Path::new("foobar"), "test-results").unwrap();
println!("{}", test.display());
println!("to do: [{}, {}, {}/{}/{}]", configuration_id, instance_set_id, instance_ipc, instance_domain, instance_number);
}
}