dfaef2468c
Adding '-verbose' will print out the allocation information for the deployment. This also changes the job run command so that it now blocks until deployment is complete and adds timestamps to the output so that it's more in line with the output of node drain. This uses glint to print in place in running in a tty. Because glint doesn't yet support cmd/powershell, Windows workflows use a different library to print in place, which results in slightly different formatting: 1) different margins, and 2) no spinner indicating deployment in progress.
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
package spin
|
|
|
|
import "sync"
|
|
|
|
// Spinner types.
|
|
var (
|
|
Box1 = `⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏`
|
|
Box2 = `⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓`
|
|
Box3 = `⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆`
|
|
Box4 = `⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋`
|
|
Box5 = `⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁`
|
|
Box6 = `⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈`
|
|
Box7 = `⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈`
|
|
Spin1 = `|/-\`
|
|
Spin2 = `◴◷◶◵`
|
|
Spin3 = `◰◳◲◱`
|
|
Spin4 = `◐◓◑◒`
|
|
Spin5 = `▉▊▋▌▍▎▏▎▍▌▋▊▉`
|
|
Spin6 = `▌▄▐▀`
|
|
Spin7 = `╫╪`
|
|
Spin8 = `■□▪▫`
|
|
Spin9 = `←↑→↓`
|
|
Default = Box1
|
|
)
|
|
|
|
// Spinner is exactly what you think it is.
|
|
type Spinner struct {
|
|
mu sync.Mutex
|
|
frames []rune
|
|
length int
|
|
pos int
|
|
}
|
|
|
|
// New returns a spinner initialized with Default frames.
|
|
func New() *Spinner {
|
|
s := &Spinner{}
|
|
s.Set(Default)
|
|
return s
|
|
}
|
|
|
|
// Set frames to the given string which must not use spaces.
|
|
func (s *Spinner) Set(frames string) {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
s.frames = []rune(frames)
|
|
s.length = len(s.frames)
|
|
}
|
|
|
|
// Current returns the current rune in the sequence.
|
|
func (s *Spinner) Current() string {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
r := s.frames[s.pos%s.length]
|
|
return string(r)
|
|
}
|
|
|
|
// Next returns the next rune in the sequence.
|
|
func (s *Spinner) Next() string {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
r := s.frames[s.pos%s.length]
|
|
s.pos++
|
|
return string(r)
|
|
}
|
|
|
|
// Reset the spinner to its initial frame.
|
|
func (s *Spinner) Reset() {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
s.pos = 0
|
|
}
|