Example #1
0
// IsFinished returns true iff the BuildStep has finished.
func (bs *BuildStep) IsFinished() bool {
	return !util.TimeIsZero(bs.Finished)
}
Example #2
0
// Finished indicates whether the build has finished.
func (b *Build) IsFinished() bool {
	return !util.TimeIsZero(b.Finished)
}