Add invalid commit skip for babeltrace benchmark
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Mon, 16 Mar 2020 18:03:55 +0000 (14:03 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Mon, 16 Mar 2020 18:03:55 +0000 (14:03 -0400)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
scripts/babeltrace-benchmark/benchmark.py

index c31f87b0a219587404711a536678167d4f0bbc8f..86a8596a33c4c24acda5c9580ece4d7c9cf18319 100644 (file)
@@ -38,6 +38,12 @@ from minio.error import ResponseError
 BENCHMARK_TYPES = ["dummy", "text"]
 DEFAULT_BUCKET = "lava"
 
+invalid_commits = {
+        "ec9a9794af488a9accce7708a8b0d8188b498789", # Does not build
+        "8c99128c640cbce71fb8a6caa15e4c672252b662", # Block on configure
+        "f3847c753f1b4f12353c38d97b0577d9993d19fb", # Does not build
+        "e0111295f17ddfcc33ec771a8deac505473a06ad", # Does not build
+        }
 
 def json_type(string):
     """
@@ -388,6 +394,8 @@ def launch_jobs(branches, git_path, wait_for_completion, debug, force):
 
         with tempfile.TemporaryDirectory() as workdir:
             for commit in commits:
+                if commit in invalid_commits:
+                    continue
                 b_results = get_benchmark_results(client, commit, workdir)[0]
                 if b_results and not force:
                     continue
This page took 0.024352 seconds and 4 git commands to generate.