Giter VIP home page Giter VIP logo

jenkins-radiator's Introduction

This project provides a build pipeline radiator for Jenkins. It
supports separate pipelines from a single Jenkins installation. For
example you can use this to show a pipeline for the mainline of the
application as well as the current release branch.

== Description ==

The radiator is organized around three concepts: builds, smoke tests
and regression tests A build is the first step in the pipeline. Once
it completes it triggers smoke tests. Once smoke tests complete they
trigger regression tests. Smoke tests are identified by "S" while
regression tests are identified by "R".

This is intended to be viewable by an entire team from a distance.
Colors provide a quick way to determine the current state of the
pipeline.


== Colors ==

In progress builds are colored BLUE.
Successful builds are colored GREEN.
Failed or Unstable builds are colored RED.

A build is considered in progress until either a smoke or regression
tests fails or until all smoke and regression tests pass.


== Settings ==

To get started create a settings_local.py under jenkins_radiator/ and
define the following Python variables:

# The full URL to your hudson installation. Example: 
HUDSON_URL = 'http://hudson.example.com/hudson/'

# Regex pattern for builds. Example:
HUDSON_BUILD_NAME_PATTERN = '_Build'

# Regex pattern for tests. Example:
HUDSON_TEST_NAME_PATTERN = '_Test_'

# Regex pattern for moke builds. Subset of the above. Example:
HUDSON_SMOKE_NAME_REGEX = re.compile('Smoke|Baseline', re.I)

# Regex pattern for projects to hide from the radiator. Example:
HUDSON_TEST_IGNORE_REGEX = ''

# Default number of build to show in the radiator
HUDSON_BUILD_COUNT = 10


== Dependencies ==

You need to install Django 1.2 or greater. See Option 1 at
http://www.djangoproject.com/download/

The project has no additional dependencies if running under Python
2.6.


== Local development ==

To start the development Django server run python manage.py runserver
from within jenkins_radiator. Now point your browser at
http://localhost:8000/radiator/project_name/ where project_name is the
name of your project.


== Deployment ==

The Django development server is single-threaded and not appropriate
for anything other than simple development. For deployment information
take a look at
http://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/

jenkins-radiator's People

Contributors

ericsmalling avatar cosmin avatar robertgreiner avatar swa-jcaswell avatar jbrucenet avatar eduaquiles avatar paul-hammant avatar neelimas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.