ChuckNorris

Jenkins Plugin GitHub release Jenkins Plugin Installs

This plugin adds an absolutely delightful feature to Jenkins: depending if your build succeeds, fails, or is unstable, it will show a picture of Chuck Norris auto-adapting (that's right, computer science it is!) to the build result!

Seeing that, already many thousands (yes, thousands!) of people have decided to take the plunge and install this plugin to finally see the light. Why not you?

Download & Installation

Install this plugin from the Jenkins Plugin Manager (Manage Jenkins > Plugins > Available plugins), or download the latest .hpi and upload it via Manage Jenkins > Plugins > Advanced settings.

Usage

Freestyle / Maven jobs

  1. Open the job’s configuration page, click Add post-build action, and select Activate Chuck Norris.
  2. Save the configuration.
  3. Run a build. After it completes, Chuck Norris (along with a random quote) will appear on the job and build pages.

Pipeline jobs

Add the chuckNorris() step to your Jenkinsfile:

pipeline {
    agent any
    stages {
        stage(‘Build’) {
            steps {
                echo ‘Building...’
            }
        }
    }
    post {
        always {
            chuckNorris()
        }
    }
}

Screenshots

Release Notes

See GitHub Releases.

Testimonials

Localization

Facts are displayed in the user's browser locale when available. Supported languages:

  • English (default)
  • Italian

Contributions of new translations are welcome — see the FactGenerator.properties files under src/main/resources.

Credits