File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
lib/travis/api/v1/pusher/build
spec/travis/api/v1/pusher/build Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,7 @@ def build_data
31
31
'event_type' => request . event_type ,
32
32
'matrix' => build . matrix . map { |job | Job . new ( job ) . data } ,
33
33
'job_ids' => build . matrix . map ( &:id ) ,
34
- 'finished_at' => format_date ( build . finished_at ) ,
35
- 'state' => build . state . to_s ,
36
- 'duration' => build . duration
34
+ 'state' => build . state . to_s
37
35
}
38
36
end
39
37
Original file line number Diff line number Diff line change 25
25
'committed_at' => json_format_time ( Time . now . utc - 1 . hour ) ,
26
26
'compare_url' => 'https://github.com/svenfuchs/minimal/compare/master...develop' ,
27
27
'event_type' => 'push' ,
28
- 'state' => 'finished' ,
29
- 'duration' => 60 ,
30
- 'finished_at' => json_format_time ( Time . now . utc )
28
+ 'state' => 'finished'
31
29
}
32
30
end
33
31
You can’t perform that action at this time.
0 commit comments