Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marverix/dashbi-widget-jenkins-build-status
Dashbi Widget: jenkins-build-status
https://github.com/marverix/dashbi-widget-jenkins-build-status
dashbi dashbi-w jenkins jenkins-build jenkins-job
Last synced: 3 months ago
JSON representation
Dashbi Widget: jenkins-build-status
- Host: GitHub
- URL: https://github.com/marverix/dashbi-widget-jenkins-build-status
- Owner: marverix
- License: isc
- Archived: true
- Created: 2019-08-22T09:01:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-02T14:10:35.000Z (about 5 years ago)
- Last Synced: 2024-06-21T18:57:19.984Z (5 months ago)
- Topics: dashbi, dashbi-w, jenkins, jenkins-build, jenkins-job
- Language: Vue
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dashbi-widget-jenkins-build-status
Dashbi widget that displays the Jenkins build status.
Created to work with `dashbi-data-provider-jenkins-build`.![screenshot](_screenshot.png)
## Usage
Widgets takes always the newest record from source and displays the status (build result).
In bottom-left corner last build ID is presented, and in bottom-right corner duration in HMS from### Install
```sh
npm install --save dashbi-widget-jenkins-build-status
```### Register
Dashbi should detect and auto-register widget.
### Example
Let's say that your Jenkins Job URL is `https://myjenkins.example.org/job/Hello/`.
Your widget configuration could look like this:```js
dashbiLayout.addWidget({
name: 'jenkins-build-status',
title: 'My Jenkins Job',
source: {
name: 'jenkins-build',
params: {
jenkinsUrl: 'https://myjenkins.example.org',
jobPath: 'job/Hello'
}
}
});
```### Data Providers
Data provider used in above example is [jenkins-build](https://github.com/marverix/dashbi-data-provider-jenkins-build)