Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/garethr/jenkins-build-list

A very simple Clojure/Noir application which hits the Jenkins API and lists recent builds for a particular job.
https://github.com/garethr/jenkins-build-list

Last synced: 3 months ago
JSON representation

A very simple Clojure/Noir application which hits the Jenkins API and lists recent builds for a particular job.

Awesome Lists containing this project

README

        

# Jenkins Build List

A very simple Clojure/Noir application which hits the Jenkins API and
lists recent builds for a particular job.

This is very much a learning exercise in writing some Clojure. Any
hints and tips much appreciated.

## Configuration

If you want to run this yourself then you'll need a properties file
called jenkins.properties in the root of the project.

```
username = "username"
password = "password"
jenkins = "http://jenkins.example.com/job/JobName"
```

## Usage

I'm assuming you've got Clojure and the Leiningen build tool installed.

```bash
lein deps
lein test
lein run
```