|
@ -1,3 +1,5 @@ |
|
|
|
|
|
import os |
|
|
|
|
|
import subprocess |
|
|
import yaml |
|
|
import yaml |
|
|
|
|
|
|
|
|
from alice.exceptions import ConfigException |
|
|
from alice.exceptions import ConfigException |
|
@ -44,10 +46,41 @@ class ConfigParser: |
|
|
print(f"[Alice] Parsed jobs: {', '.join(jobs.keys())}") |
|
|
print(f"[Alice] Parsed jobs: {', '.join(jobs.keys())}") |
|
|
return jobs |
|
|
return jobs |
|
|
else: |
|
|
else: |
|
|
raise ConfigException("[Alice] No jobs defined in config") |
|
|
raise ConfigException("No jobs defined in config") |
|
|
|
|
|
|
|
|
|
|
|
def __is_changed(self, changes): |
|
|
|
|
|
try: |
|
|
|
|
|
target = changes["branch"] |
|
|
|
|
|
paths = [] |
|
|
|
|
|
for path in changes["paths"]: |
|
|
|
|
|
paths.append(os.path.abspath(path)) |
|
|
|
|
|
print(paths) |
|
|
|
|
|
# TODO: Error handling |
|
|
|
|
|
command = ["git", "diff", "--name-only", target] |
|
|
|
|
|
with subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p: |
|
|
|
|
|
p.wait() |
|
|
|
|
|
for line in p.stdout: |
|
|
|
|
|
change_path = os.path.abspath(line.decode("UTF-8").strip()) |
|
|
|
|
|
for path in paths: |
|
|
|
|
|
spec_path = os.path.abspath(path) |
|
|
|
|
|
if change_path.startswith(spec_path): |
|
|
|
|
|
print(f"Modified file: {change_path}") |
|
|
|
|
|
print(f"Path match: {path}") |
|
|
|
|
|
return True |
|
|
|
|
|
except KeyError: |
|
|
|
|
|
raise ConfigException(f"Invalid 'changes' config: {changes}") |
|
|
|
|
|
return False |
|
|
|
|
|
|
|
|
def execute_job(self, job_name): |
|
|
def execute_job(self, job_name): |
|
|
if job_name in self.jobs: |
|
|
if job_name in self.jobs: |
|
|
# Pass the job_spec to a runner |
|
|
job_spec = self.jobs[job_name] |
|
|
runner = self.factory.get_runner(self.jobs[job_name]["type"]) |
|
|
should_run = True |
|
|
runner.run(self.jobs[job_name]) |
|
|
if "changes" in job_spec: |
|
|
|
|
|
should_run = self.__is_changed(job_spec["changes"]) |
|
|
|
|
|
if should_run: |
|
|
|
|
|
runner = self.factory.get_runner(job_spec["type"]) |
|
|
|
|
|
runner.run(job_spec) |
|
|
|
|
|
return "SUCCESS" |
|
|
|
|
|
else: |
|
|
|
|
|
print("SKIP, no change detected") |
|
|
|
|
|
|
|
|