amol- commented on a change in pull request #10650:
URL: https://github.com/apache/arrow/pull/10650#discussion_r671100819
##########
File path: dev/archery/archery/crossbow/cli.py
##########
@@ -233,6 +233,27 @@ def latest_prefix(obj, prefix, fetch):
click.echo(latest.branch)
[email protected]()
[email protected]('job-name', required=True)
[email protected]_obj
+def save_report_data(obj, job_name):
+ """
+ Just print there the state of the job
+ """
+ output = obj['output']
+
+ queue = obj['queue']
+ print(dir(queue))
+
+ if fetch:
+ queue.fetch()
+
+ job = queue.get(job_name)
+ report = JsonReport(job=job)
+
+ report.show(output)
Review comment:
I think we are still missing the implementation of `JsonReport.show`.
But the real question that I don't yet have clear is _where_ should we ever see
this output if `save-report-data` command is not yet attached to the nightly
builds execution? Is there a way to try nightly build changes _before_ making
them real?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]