summaryrefslogtreecommitdiff
path: root/build/phases.go
blob: 095263c90b6edab3ef9af4adbd12c4808cf25902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package build

type Phase int

const (
	PhasePrivileged Phase = iota
	PhasePrivilegeDropped
	PhasePreInstall
	PhasePostInstall
)

type PhaseCompileable interface {
	InstructionsForPhase(phase Phase) []Instruction
}