1
0
Fork 0

feat: add watch flag

timestamps
dump_stack() 2024-02-25 18:02:03 +00:00
parent bb8344958e
commit 29f4821320
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB
1 changed files with 8 additions and 3 deletions

View File

@ -91,6 +91,8 @@ type PewCmd struct {
Kcfg config.KernelConfig `kong:"-" json:"-"`
TimeoutDeadline time.Time `kong:"-" json:"-"`
Watch bool `help:"watch job status"`
repoName string
commit string
@ -316,6 +318,8 @@ func (cmd PewCmd) watchJob(swg *sizedwaitgroup.SizedWaitGroup,
func (cmd PewCmd) remote(swg *sizedwaitgroup.SizedWaitGroup,
ka artifact.Artifact, ki distro.KernelInfo) {
defer swg.Done()
slog := log.With().
Str("distro_type", ki.Distro.ID.String()).
Str("distro_release", ki.Distro.Release).
@ -337,14 +341,15 @@ func (cmd PewCmd) remote(swg *sizedwaitgroup.SizedWaitGroup,
slog = slog.With().Str("uuid", uuid).Logger()
if err != nil {
slog.Error().Err(err).Msg("cannot add job")
swg.Done() // FIXME
return
}
slog.Info().Msg("add")
// FIXME dummy (almost)
go cmd.watchJob(swg, slog, uuid)
if cmd.Watch {
// FIXME dummy (almost)
go cmd.watchJob(swg, slog, uuid)
}
}
func (cmd PewCmd) testArtifact(swg *sizedwaitgroup.SizedWaitGroup,