This commit is contained in:
2026-08-05 14:27:19 +09:00
parent f2996642d8
commit c8df8d5611
2 changed files with 10 additions and 3 deletions
+4 -2
View File
@@ -1,15 +1,17 @@
import os
import sys
import yaml
import job
import pipelines
def main(config_yaml):
with open(config_yaml, 'r') as f:
config = yaml.safe_load(f)
job_types = {
'random+sobo': job.sobo_job
'random+sobo': pipelines.sobo_pipeline
}
job_types[config['job']['type']](config)