Skip to main content

Unifier of Continuous Integration

Project description

Project 'Universum'

Documentation Status

Universum integrates various CI systems and provides additional features, such as: customized downloading sources from VCS, running tests described in configuration file and reporting the results to code review systems.

Full documentation can be found here: https://universum.readthedocs.io/

Please check out our code of conduct and contribution policy

Project is executed with python3.7 -m universum command. Independent analyzers are executed with their module name, e.g. python3.7 -m universum.analyzers.pylint. Other Universum modes, such as poller or submitter, are called via command line, e.g. python3.7 -m universum poll

Installation from GitHub

Latest release

Minimum prerequisites (see documentation for details):

  1. OS Linux
  2. Python 3.7
  3. Pip for python3.7
  4. Git client
sudo python3.7 -m pip install -U git+https://github.com/Samsung/Universum/@release

Latest development + tests

Additional prerequisites (see documentation for details):

  1. Perforce CLI, P4Python ('helix-cli' and 'perforce-p4python')
  2. Docker ('docker-ce', 'docker-ce-cli')
  3. Current user added to 'docker' group (use sudo usermod -a -G docker $USER and then relogin)
git clone https://github.com/Samsung/Universum.git universum-working-dir
cd universum-working-dir
git checkout master
pip install .[test] -U
make images

After this run make tests and ensure all tests are passing.

Also note that running pip uninstall universum will remove Universum itself, but all the dependency modules will remain in the system.

Project contents

universum is main project folder, that is being copied to Python libraries location (e.g. dist-packages or site-packages) when installed. It contains __main__.py script, that is the main entry point to the whole project. It also contains the following modules:

  • main/poll/submit/api/nonci - managing modules for different Universum modes

  • configuration_support - special module for configuring the project

  • analyzers directory is not quite a part of Universum itself. It contains independent scripts compatible with Universum for implementing static (and other types of) analysis support.

  • lib - utility functions libraries

    • ci_exception - internal exceptions
    • module_arguments - handles command line and other parameters
    • gravity - inter-module communication
    • utils - miscellaneous
  • modules - independent packages

    • api_support - 'main' mode module to answer API requests
    • automation_server - drivers for CI systems (e.g. Jenkins)
    • artifact_collector - implements build artifacts
    • code_report_collector - support for external 'code report' modules
    • launcher - executes build scenario, described in project configuration file
    • output - drivers for environment-based logs
    • project_directory - interaction with host file system
    • reporter - interaction with code review systems
    • structure_handler - execution 'blocks' isolation, order, reporting, etc.
    • vcs - CI target sources preparation

Also there are 'base' modules/classes for driver implementation standardization, and 'main' modules/classes for automated driver choosing based on environment and settings.

doc directory contains sources for project documentation. It can be generated locally with running make from root directory using Sphinx.

tests directory contains test system, based on PyTest. Full tests can be started from root directory via make tests command, otherwise use standard PyTest syntax. Commits failing any of project tests should not be merged into 'master' branch!

examples contains various examples of project configuration files. Usage of such files is illustrated in run_basic_example.sh script.

universum_log_collapser contains Universum Jenkins plugin sources. The plugin implements coloring of failed steps and provides collapsing/expansion of log sections.

setup.py is 'setuptools' configuration file, and shouldn't be executed on its own.

Quick architecture overview

  1. Project only entry point (except 'analyzers') is universum.py. Based on chosen execution mode (default, submitting, polling, etc.) it calls one of 'main' modules, passing them all parameters

  2. Universum is a set of separate modules, each implementing its own piece of functionality. They are connected using special gravity library

  3. All classes, inherited from Module (defined in gravity), automatically can:

    • use Dependency mechanism to use other modules
    • describe any module parameters in define_arguments() and receive them parsed via self.settings
  4. configuration_support is, in fact, an 'external' module, used not only by Universum, but by user configuration file for generating project configuration

  5. 'Base' classes are virtual, not implementing any actual functionality, but describing the structure of inherited classes and ensuring they have all required functions that will be called by modules using them

Contributing

Further versions of this README file should include:

  1. Notification on mandatory code review for all commits to master
  2. Notification on mandatory documenting of the newly added features
  3. Description of CI process, links to configurations/logs/build results/etc.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Universum-0.18.7.tar.gz (56.0 kB view hashes)

Uploaded Source

Built Distribution

Universum-0.18.7-py3-none-any.whl (79.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page