mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-06 00:49:48 +00:00
35 lines
732 B
Go
35 lines
732 B
Go
package build
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
StdoutLine int = iota
|
|
StderrLine
|
|
ExitCodeLine
|
|
MetadataLine
|
|
ProgressLine
|
|
)
|
|
|
|
// Line is a line of console output.
|
|
type Line struct {
|
|
Proc string `json:"proc,omitempty"`
|
|
Time int64 `json:"time,omitempty"`
|
|
Type int `json:"type,omitempty"`
|
|
Pos int `json:"pos,omityempty"`
|
|
Out string `json:"out,omitempty"`
|
|
}
|
|
|
|
func (l *Line) String() string {
|
|
switch l.Type {
|
|
case ExitCodeLine:
|
|
return fmt.Sprintf("[%s] exit code %s", l.Proc, l.Out)
|
|
default:
|
|
return fmt.Sprintf("[%s:L%v:%vs] %s", l.Proc, l.Pos, l.Time, l.Out)
|
|
}
|
|
}
|
|
|
|
// State defines the state of the container.
|
|
type State struct {
|
|
ExitCode int // container exit code
|
|
OOMKilled bool // container exited due to oom error
|
|
}
|