mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-04-02 22:05:46 +02:00
* refactor: removed goreleaserlib: moved all to main * refactor: wip: snapshot * fix: more pipes * fix: more pipes * fix: git tests * fix: some other validate and publish usages * fix: git dirty check when snapshoting * fix: nfpm: use tag instead of version * test: docker: print docker run output if registry fails
41 lines
923 B
Go
41 lines
923 B
Go
package pipeline
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goreleaser/goreleaser/context"
|
|
)
|
|
|
|
// Piper defines a pipe, which can be part of a pipeline (a serie of pipes).
|
|
type Piper interface {
|
|
fmt.Stringer
|
|
|
|
// Run the pipe
|
|
Run(ctx *context.Context) error
|
|
}
|
|
|
|
// ErrSnapshotEnabled happens when goreleaser is running in snapshot mode.
|
|
// It usually means that publishing and maybe some validations were skipped.
|
|
var ErrSnapshotEnabled = Skip("disabled during snapshot mode")
|
|
|
|
// IsSkip returns true if the error is an ErrSkip
|
|
func IsSkip(err error) bool {
|
|
_, ok := err.(ErrSkip)
|
|
return ok
|
|
}
|
|
|
|
// ErrSkip occurs when a pipe is skipped for some reason
|
|
type ErrSkip struct {
|
|
reason string
|
|
}
|
|
|
|
// Error implements the error interface. returns the reason the pipe was skipped
|
|
func (e ErrSkip) Error() string {
|
|
return e.reason
|
|
}
|
|
|
|
// Skip skips this pipe with the given reason
|
|
func Skip(reason string) ErrSkip {
|
|
return ErrSkip{reason}
|
|
}
|