|
|
@ -13,6 +13,7 @@ class ConfigParser: |
|
|
|
self.config = yaml.safe_load(f) |
|
|
|
self.factory = Factory(verbose, self.__gen_globals(cli_env_vars), self.config.get("runners", {})) |
|
|
|
self.jobs = self.__get_jobs() |
|
|
|
self.pipelines = self.config.get("pipelines", {}) |
|
|
|
|
|
|
|
# Initialize env and workdir if not present in global |
|
|
|
def __gen_globals(self, cli_vars): |
|
|
@ -72,8 +73,24 @@ class ConfigParser: |
|
|
|
raise ConfigException(f"Invalid 'changes' config: {changes}") |
|
|
|
return False |
|
|
|
|
|
|
|
def execute(self, task_name): |
|
|
|
if task_name in self.jobs: |
|
|
|
self.execute_job(task_name) |
|
|
|
elif task_name in self.pipelines: |
|
|
|
print(f"[Alice][Pipeline] {task_name}: Start") |
|
|
|
self.execute_pipeline(task_name) |
|
|
|
print(f"[Alice][Pipeline] {task_name}: Success") |
|
|
|
else: |
|
|
|
raise ConfigException(f"No such job or pipeline: {task_name}") |
|
|
|
|
|
|
|
def execute_pipeline(self, pipeline_name): |
|
|
|
if pipeline_name in self.pipelines: |
|
|
|
for job in self.pipelines[pipeline_name]: |
|
|
|
self.execute_job(job) |
|
|
|
|
|
|
|
def execute_job(self, job_name): |
|
|
|
if job_name in self.jobs: |
|
|
|
print(f"[Alice][Job] {job_name}: Start") |
|
|
|
job_spec = self.jobs[job_name] |
|
|
|
should_run = True |
|
|
|
if "changes" in job_spec: |
|
|
@ -81,6 +98,7 @@ class ConfigParser: |
|
|
|
if should_run: |
|
|
|
runner = self.factory.get_runner(job_spec["type"]) |
|
|
|
runner.run(job_spec) |
|
|
|
return "SUCCESS" |
|
|
|
status = "SUCCESS" |
|
|
|
else: |
|
|
|
return "SKIP, no change detected" |
|
|
|
status = "SKIP, no change detected" |
|
|
|
print(f"[Alice][Job] {job_name}: {status}") |
|
|
|