Skip to content

wulfy/JenkinsLight

 
 

Repository files navigation

JenkinsLight Build Status

A build monitoring tool (buildwall) that allows you to quickly detect failing projects for Jenkins.

JenkinsLight

Requirements

This project required a cors-plugin Jenkins plugin to enabled CORS. Enabling CORS would let you call the Jenkins REST API from javascript (you can use the provided packaged plugin).

Installation

Clone the project

$ git clone https://github.com/M6Web/JenkinsLight.git
$ cd JenkinsLight

Install dependencies

$ npm install -g bower grunt-cli
$ npm install
$ bower install

Configuration

Please configure a new app/scripts/config.js file from app/scripts/config.js.dist.

Jenkins options :

  • CI.JENKINS.URL : Jenkins server url
  • CI.JENKINS.AUTHORIZATION_TOKEN : authorization token if your Jenkins server is secured, eg: "Basic 0123456=" (opt.)
  • CI.JENKINS.DEFAULT_VIEW : default Jenkins view to display, eg : "All"
  • CI.JENKINS.JOBS_TO_BE_DISPLAYED : array of all job types that can be displayed :
    • red : failing job,
    • red_anime : building failed job,
    • blue : succeeding job,
    • blue_anime : building succeeded job.

Display options :

  • MAX_JOBS_PER_LINE : maximum number of jobs displayed per line
  • REFRESH_TIME : refresh time (ms)
  • BACKGROUND_BLANK_SCREEN_URL : background image url use if no job are dislayed
  • JOBS_NOT_DISPLAYED_REGEXP : exclude jobs which name match this regexp

Then you have to build the server code.

$ grunt build

Your server root url must target the dist folder.

Use

Use view query parameter for select a Jenkins view.

http://jenkins-light-url/index.html#?view=MyView

Installation for dev

Clone and init the project

$ git clone https://github.com/M6Web/JenkinsLight.git
$ cd JenkinsLight/vagrant
$ git submodule install --init

Install Vagrant and configure Vagrantfile :

$ cp Vagrantfile.dist Vagrantfile

Note : configure your own Vagrantfile and provisionning if necessary.

$ vagrant up
$ vagrant ssh
$ cd /vagrant

Install dependencies

$ sudo npm install --no-bin-links
$ bower install

Configure your application via app/scripts/config.js.

Run the server

$ grunt server

You can now access the application at http://localhost:8888.

Tests

$ npm test

Credits

Developed by the Cytron Team of M6 Web.

License

JenkinsLight is licensed under the MIT license.

About

Buildwall for Jenkins

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 74.7%
  • CSS 13.7%
  • HTML 10.2%
  • Puppet 1.3%
  • Shell 0.1%