Generate query and results and charts in separate directory

This commit is contained in:
2026-09-15 17:38:52 +02:00
parent 428d36e529
commit c5ec776d87
4 changed files with 88 additions and 48 deletions
+5 -1
View File
@@ -284,8 +284,12 @@ sub results {
# Keep trying even if a single query fails
for my $query (@queries) {
eval {
# Remote results stay in the experiment dir so they are archived
my $experiment_dir = "$remote_builds_dir/$experiment";
Util::execute_query( $experiment, $query,
$remote_db_conf, $remote_builds_dir, 1, @configs );
$remote_db_conf, $experiment_dir, $experiment_dir, "", 1,
@configs );
1;
} or do {
my $error = $@ || 'bullshit error';