mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-07-14 22:24:36 +08:00
FIX time count bug
This commit is contained in:
@@ -14,7 +14,7 @@ json.started format_utc_time(stage.stage_started)
|
|||||||
json.stopped format_utc_time(stage.stage_stopped)
|
json.stopped format_utc_time(stage.stage_stopped)
|
||||||
json.created format_utc_time(stage.stage_created)
|
json.created format_utc_time(stage.stage_created)
|
||||||
json.updated format_utc_time(stage.stage_updated)
|
json.updated format_utc_time(stage.stage_updated)
|
||||||
json.duration_time render_duartion_time(stage.stage_started, stage.stage_stopped)
|
json.duration_time render_duartion_time(stage.stage_stopped, stage.stage_started)
|
||||||
json.version stage.stage_version
|
json.version stage.stage_version
|
||||||
json.on_success stage.stage_on_success
|
json.on_success stage.stage_on_success
|
||||||
json.on_failure stage.stage_on_failure
|
json.on_failure stage.stage_on_failure
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ json.status step.step_status
|
|||||||
json.exit_code step.step_exit_code
|
json.exit_code step.step_exit_code
|
||||||
json.started format_utc_time(step.step_started)
|
json.started format_utc_time(step.step_started)
|
||||||
json.stopped format_utc_time(step.step_stopped)
|
json.stopped format_utc_time(step.step_stopped)
|
||||||
json.duration_time render_duartion_time(step.step_started, step.step_stopped)
|
json.duration_time render_duartion_time(step.step_stopped, step.step_started)
|
||||||
json.version step.step_version
|
json.version step.step_version
|
||||||
|
|||||||
Reference in New Issue
Block a user