job/osbuild: skip the job if manifest generation failed
Running the job in this case is basically undefined, so let's just skip it in order to not break anything. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
parent
0508a7ad1b
commit
c56eb724e8
1 changed files with 5 additions and 0 deletions
|
|
@ -92,6 +92,11 @@ func (impl *OSBuildJobImpl) Run(job worker.Job) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// skip the job if the manifest generation failed
|
||||||
|
if manifestJR.Error != "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
args.Manifest = manifestJR.Manifest
|
args.Manifest = manifestJR.Manifest
|
||||||
}
|
}
|
||||||
// copy pipeline info to the result
|
// copy pipeline info to the result
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue