Browse Source

Pipelines

pull/19/head
Daniel Gyulai 3 years ago
parent
commit
1c1afd7bc4
  1. 2
      alice-ci/setup.cfg
  2. 10
      alice-ci/src/alice/cli.py
  3. 22
      alice-ci/src/alice/configparser.py
  4. 9
      alice-ci/src/alice/runners/pythonrunner.py
  5. 14
      ci-examples/full.yaml

2
alice-ci/setup.cfg

@ -1,6 +1,6 @@
[metadata] [metadata]
name = alice-ci name = alice-ci
version = 0.0.6 version = 0.0.9
author = Daniel Gyulai author = Daniel Gyulai
description = Alice CI framework description = Alice CI framework
long_description = file: README.md long_description = file: README.md

10
alice-ci/src/alice/cli.py

@ -24,14 +24,8 @@ def parse_jobs(args):
print(f"[Alice] Env vars from CLI: {envs}") print(f"[Alice] Env vars from CLI: {envs}")
jobParser = ConfigParser(args.input, gen_env(args.env), args.verbose) jobParser = ConfigParser(args.input, gen_env(args.env), args.verbose)
print("[Alice] Begin pipeline steps")
for step in args.steps: for step in args.steps:
if step in jobParser.jobs: jobParser.execute(step)
print(f"[Alice][Step] {step}: Start")
status = jobParser.execute_job(step)
print(f"[Alice][Step] {step}: {status}")
else:
raise ConfigException(f"Step {step} not found in {args.input}")
except ConfigException as e: except ConfigException as e:
print(f"Configuration error-> {e}") print(f"Configuration error-> {e}")
exit(1) exit(1)
@ -44,7 +38,7 @@ def parse_jobs(args):
def main(): def main():
parser = argparse.ArgumentParser(prog="alice") parser = argparse.ArgumentParser(prog="alice")
parser.add_argument("steps", nargs='+') parser.add_argument("steps", nargs='*', default=["default"])
parser.add_argument("-i", "--input", default="alice-ci.yaml") parser.add_argument("-i", "--input", default="alice-ci.yaml")
parser.add_argument("-e", "--env", nargs='*', default=[]) parser.add_argument("-e", "--env", nargs='*', default=[])
parser.add_argument("-a", "--addrunner", nargs='*', default=[]) parser.add_argument("-a", "--addrunner", nargs='*', default=[])

22
alice-ci/src/alice/configparser.py

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

9
alice-ci/src/alice/runners/pythonrunner.py

@ -4,7 +4,7 @@ import sys
import shlex import shlex
from alice.exceptions import NonZeroRetcode, RunnerError, ConfigException from alice.exceptions import NonZeroRetcode, RunnerError, ConfigException
from alice.runners.pyutils import PackageManager, glob_command from alice.runners.pyutils import glob_command
# TODO: Handle config like PyPiConfig # TODO: Handle config like PyPiConfig
@ -42,7 +42,12 @@ class PythonRunner:
if len(dependencies) > 0: if len(dependencies) > 0:
if self.verbose: if self.verbose:
print(f"[PythonRunner] Ensuring dependencies: {', '.join(dependencies)}") print(f"[PythonRunner] Ensuring dependencies: {', '.join(dependencies)}")
PackageManager.getInstance().ensure_more(dependencies, executable=self.vpython) command = [self.vpython, "-m", "pip", "install"] + dependencies
with subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p:
p.wait()
if p.returncode != 0:
sys.stdout.buffer.write(p.stderr.read())
raise(RunnerError(f"[PythonRunner] Could not install dependencies: {dependencies} ({p.returncode})"))
if self.verbose: if self.verbose:
print("[PythonRunner] Installation done") print("[PythonRunner] Installation done")

14
ci-examples/full.yaml

@ -30,14 +30,14 @@ jobs:
- "-c \"from os import environ; assert environ['A'] == 'D'; assert environ['B'] == 'E'; assert environ['C'] == 'C'; print('Assertions passed')\"" - "-c \"from os import environ; assert environ['A'] == 'D'; assert environ['B'] == 'E'; assert environ['C'] == 'C'; print('Assertions passed')\""
- name: lint - name: lint
type: python type: python
workdir: alice-ci workdir: alice-ci/src
commands: commands:
- "-m flake8 --ignore E501" - "-m flake8 --ignore E501"
- name: pkg - name: pkg
type: pypi type: pypi
workdir: . workdir: .
upload: true upload: false
fail_if_exists: false fail_if_exists: false # TODO: currently unused
repo: repo:
uri: example.com uri: example.com
username: username:
@ -45,4 +45,10 @@ jobs:
password: password:
from_env: PYPIPASS from_env: PYPIPASS
packages: packages:
- alice-ci - alice-ci
pipelines:
default:
- lint
- env
- pkg
Loading…
Cancel
Save