single job build fix (#6856)

This commit is contained in:
Ilya Mashchenko 2019-09-16 11:54:32 +03:00 committed by GitHub
parent ff22487f28
commit 744a126151
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ class ModuleConfig:
return [v for v in self.config if isinstance(self.config.get(v), dict)]
def single_job(self):
return [self.create_job(self.name)]
return [self.create_job(self.name, self.config)]
def multi_job(self):
return [self.create_job(n, self.config[n]) for n in self.job_names()]