We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c2f36 commit 84f5a56Copy full SHA for 84f5a56
.github/scripts/extract_benchmark_results.py
@@ -129,6 +129,10 @@ def extract_android_benchmark_results(
129
except error.HTTPError:
130
warning(f"Fail to {artifact_type} {artifact_s3_url}")
131
return []
132
+ except json.decoder.JSONDecodeError:
133
+ # This is to handle the case where there is no benchmark results
134
+ warning(f"Fail to load the benchmark results from {artifact_s3_url}")
135
+ return []
136
137
138
def extract_job_id(artifacts_filename: str) -> int:
0 commit comments