Source code for pyscaffold.extensions.gitlab_ci

# -*- coding: utf-8 -*-
"""
Extension that generates configuration and script files for GitLab CI.
"""

from ..api import Extension, helpers
from ..templates import gitlab_ci


[docs]class GitLab(Extension): """Generate GitLab CI configuration files"""
[docs] def activate(self, actions): """Activate extension Args: actions (list): list of actions to perform Returns: list: updated list of actions """ return self.register(actions, self.add_files, after="define_structure")
[docs] def add_files(self, struct, opts): """Add .gitlab-ci.yml file to structure Args: struct (dict): project representation as (possibly) nested :obj:`dict`. opts (dict): given options, see :obj:`create_project` for an extensive list. Returns: struct, opts: updated project representation and options """ files = {".gitlab-ci.yml": (gitlab_ci(opts), helpers.NO_OVERWRITE)} return helpers.merge(struct, {opts["project"]: files}), opts