forgeplus/app/views/ci/builds/_step.json.jbuilder

10 lines
344 B
Plaintext
Raw Normal View History

2020-08-20 18:37:53 +08:00
json.id step.step_id
json.number step.step_number
json.name step.step_name
json.status step.step_status
json.exit_code step.step_exit_code
json.started format_utc_time(step.step_started)
json.stopped format_utc_time(step.step_stopped)
2020-08-26 10:46:54 +08:00
json.duration_time render_duartion_time(step.step_stopped, step.step_started)
2020-08-25 17:14:55 +08:00
json.version step.step_version