From 191770ee71ac0e5ee15ef17eb7e1c20da2e5be0b Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Wed, 31 Dec 2025 13:40:58 -0500 Subject: [PATCH 1/2] Make experiment more robust --- service/experiment-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service/experiment-config.yaml b/service/experiment-config.yaml index b9acb09f8..e60cbc7fb 100644 --- a/service/experiment-config.yaml +++ b/service/experiment-config.yaml @@ -2,7 +2,7 @@ # Unless you are a fuzzbench maintainer running this service, this # will not work with your setup. -trials: 20 +trials: 10 max_total_time: 82800 # 23 hours, the default time for preemptible experiments. cloud_project: fuzzbench docker_registry: gcr.io/fuzzbench @@ -11,11 +11,11 @@ experiment_filestore: gs://fuzzbench-data report_filestore: gs://www.fuzzbench.com/reports cloud_sql_instance_connection_name: "fuzzbench:us-central1:postgres-experiment-db=tcp:5432" worker_pool_name: "projects/fuzzbench/locations/us-central1/workerPools/buildpool-e2-std-32" # Mem 128 GB -preemptible_runners: true +preemptible_runners: false # This experiment should generate a report that is combined with other public # "production" experiments. -merge_with_nonprivate: true +merge_with_nonprivate: false # This experiment should be merged with other reports in later experiments. private: false From 69f6e2a3185fed42bffa746e15c39e56a3d087c2 Mon Sep 17 00:00:00 2001 From: Jonathan Metzman Date: Thu, 8 Jan 2026 20:40:03 -0500 Subject: [PATCH 2/2] Trigger gcbrun --- service/gcbrun_experiment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/service/gcbrun_experiment.py b/service/gcbrun_experiment.py index bbebcf1b9..fab742064 100644 --- a/service/gcbrun_experiment.py +++ b/service/gcbrun_experiment.py @@ -83,6 +83,7 @@ def exec_command_from_github(pull_request_number): def main(): """Entrypoint for GitHub CI into run_experiment.py""" logging.basicConfig(level=logging.INFO) + logging.info('gcbrun_experiment.py running') pull_request_number = int(os.environ['PULL_REQUEST_NUMBER']) result = exec_command_from_github(pull_request_number) print('result', result)