chore(ci): write boolean keys results file at the correct location

This commit is contained in:
David Testé
2023-06-14 16:36:09 +02:00
committed by David Testé
parent 00c4eb417b
commit 5690796da4

View File

@@ -86,6 +86,6 @@ fn main() {
new_work_dir.push("tfhe");
std::env::set_current_dir(new_work_dir).unwrap();
let results_file = Path::new("tfhe/boolean_key_sizes.csv");
let results_file = Path::new("boolean_key_sizes.csv");
client_server_key_sizes(results_file)
}