Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/garethr/jenkins-build-list
- Owner: garethr
- Created: 2011-12-25T15:56:35.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-27T12:08:15.000Z (about 13 years ago)
- Last Synced: 2024-10-04T16:25:47.059Z (3 months ago)
- Language: Clojure
- Homepage:
- Size: 90.8 KB
- Stars: 12
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```