mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
A few improvements to AST Fuzzer
This commit is contained in:
parent
4f73046520
commit
79ae191611
@ -384,7 +384,7 @@ th { cursor: pointer; }
|
|||||||
<tr>
|
<tr>
|
||||||
<td>AST Fuzzer</td>
|
<td>AST Fuzzer</td>
|
||||||
<td>$(cat status.txt)</td>
|
<td>$(cat status.txt)</td>
|
||||||
<td style="white-space: pre;">$(clickhouse-local --input-format RawBLOB --output-format RawBLOB --query "SELECT encodeXMLComponent(*) FROM table" < description.txt)</td>
|
<td style="white-space: pre;">$(clickhouse-local --input-format RawBLOB --output-format RawBLOB --query "SELECT encodeXMLComponent(*) FROM table" < description.txt || cat description.txt)</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
</body>
|
||||||
|
@ -124,20 +124,12 @@ if __name__ == "__main__":
|
|||||||
s3_helper = S3Helper()
|
s3_helper = S3Helper()
|
||||||
for f in paths:
|
for f in paths:
|
||||||
try:
|
try:
|
||||||
paths[f] = s3_helper.upload_test_report_to_s3(paths[f], s3_prefix + "/" + f)
|
paths[f] = s3_helper.upload_test_report_to_s3(paths[f], s3_prefix + f)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
logging.info("Exception uploading file %s text %s", f, ex)
|
logging.info("Exception uploading file %s text %s", f, ex)
|
||||||
paths[f] = ""
|
paths[f] = ""
|
||||||
|
|
||||||
report_url = GITHUB_RUN_URL
|
report_url = GITHUB_RUN_URL
|
||||||
if paths["run.log"]:
|
|
||||||
report_url = paths["run.log"]
|
|
||||||
if paths["main.log"]:
|
|
||||||
report_url = paths["main.log"]
|
|
||||||
if paths["server.log.gz"]:
|
|
||||||
report_url = paths["server.log.gz"]
|
|
||||||
if paths["fuzzer.log"]:
|
|
||||||
report_url = paths["fuzzer.log"]
|
|
||||||
if paths["report.html"]:
|
if paths["report.html"]:
|
||||||
report_url = paths["report.html"]
|
report_url = paths["report.html"]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user