Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenkinsci/calendar-view-plugin
Jenkins Calendar View Plugin: Shows past and future builds in a calendar view
https://github.com/jenkinsci/calendar-view-plugin
build calendar ci fullcalendar jenkins jenkins-plugin
Last synced: 3 months ago
JSON representation
Jenkins Calendar View Plugin: Shows past and future builds in a calendar view
- Host: GitHub
- URL: https://github.com/jenkinsci/calendar-view-plugin
- Owner: jenkinsci
- License: other
- Created: 2018-07-09T20:41:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-20T16:49:40.000Z (4 months ago)
- Last Synced: 2024-10-21T13:13:14.993Z (4 months ago)
- Topics: build, calendar, ci, fullcalendar, jenkins, jenkins-plugin
- Language: Java
- Homepage: https://plugins.jenkins.io/calendar-view/
- Size: 4.34 MB
- Stars: 20
- Watchers: 5
- Forks: 19
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Jenkins Calendar View Plugin
[![Jenkins Plugins](https://img.shields.io/jenkins/plugin/v/calendar-view.svg)](https://plugins.jenkins.io/calendar-view)
[![Jenkins Plugins](https://img.shields.io/jenkins/plugin/i/calendar-view.svg)](https://plugins.jenkins.io/calendar-view)
[![MIT License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE.md)
[![Build Status](https://ci.jenkins.io/buildStatus/icon?job=Plugins/calendar-view-plugin/master)](https://ci.jenkins.io/blue/organizations/jenkins/Plugins%2Fcalendar-view-plugin/branches)
[![codecov](https://codecov.io/gh/jenkinsci/calendar-view-plugin/branch/master/graph/badge.svg)](https://codecov.io/gh/jenkinsci/calendar-view-plugin)
[![Dependency Status](https://david-dm.org/jenkinsci/calendar-view-plugin.svg)](https://david-dm.org/jenkinsci/calendar-view-plugin)
[![devDependency Status](https://david-dm.org/jenkinsci/calendar-view-plugin/dev-status.svg)](https://david-dm.org/jenkinsci/calendar-view-plugin?type=dev)
[![Code Climate](https://codeclimate.com/github/jenkinsci/calendar-view-plugin/badges/gpa.svg)](https://codeclimate.com/github/jenkinsci/calendar-view-plugin)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/a04ec3c3de0444699ecb2d123a9b7697)](https://www.codacy.com/app/svenschoenung/calendar-view-plugin) [![Greenkeeper badge](https://badges.greenkeeper.io/jenkinsci/calendar-view-plugin.svg)](https://greenkeeper.io/)
[![javadoc](https://img.shields.io/badge/javadoc-available-brightgreen.svg)](https://javadoc.jenkins.io/plugin/calendar-view/)## About
Shows past and future builds in a calendar view.
## Screenshots
| ![](https://raw.githubusercontent.com/jenkinsci/calendar-view-plugin/master/docs/images/month-view.png) | ![](https://raw.githubusercontent.com/jenkinsci/calendar-view-plugin/master/docs/images/week-view.png) |
|---------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|## Features
* Provides a month, week and day view of past and future builds
* Indicates status of past builds by color
* Displays when future scheduled builds will happen
* Shows estimated duration of future scheduled builds
* Configurable date and time settings## Usage
### 1. Create a new view
Select the *Calendar View* option and give the view a name.
| ![](https://raw.githubusercontent.com/jenkinsci/calendar-view-plugin/master/docs/images/create-view.png) |
|----------------------------------------------------------------------------------------------------------|### 2. Configure the view
Select the jobs whose builds should be displayed in the view and customize the view to your liking:
Tip: to be more flexible in selecting the jobs use the
[View Job Filters Plugin](https://github.com/jenkinsci/view-job-filters-plugin).| ![](https://raw.githubusercontent.com/jenkinsci/calendar-view-plugin/master/docs/images/config-view.png) |
|----------------------------------------------------------------------------------------------------------|### 3. Open the view
This will show all the past and future builds for the jobs that you have selected in the previous step.
Note: there is currently no auto refresh available.
#### Past builds
Past builds will appear in four different colors:
* *Successfull* builds will be *blue*
* *Failed* builds will be *red*
* *Unstable* builds will be *yellow*
* *Aborted* builds will be *dark gray*Clicking on a past build will lead to that specific build's detail page.
#### Future builds
*Future* builds are *light gray with a dashed border*.
Clicking on a future build will lead to the job's detail page.
| ![](https://raw.githubusercontent.com/jenkinsci/calendar-view-plugin/master/docs/images/month-view.png) |
|---------------------------------------------------------------------------------------------------------|
| ![](https://raw.githubusercontent.com/jenkinsci/calendar-view-plugin/master/docs/images/week-view.png) |## Development
Clone the repository then execute the following in the project's root directory:
```
$ mvn install
```This will install Java dependencies as well as a local node installation and npm dependencies.
You can now run the plugin in a Jenkins instance by executing the following:
```
$ mvn hpi:run
```To watch JavaScript and CSS files using webpack:
```
$ npm run dev
```## Use Calendar View with Job DSL
Calendar View integrates also with Job DSL.
Simple example with nestedView:
```
nestedView('Job Schedule') {
description('Description')
views {
calendarView {
name('CalendarName')
description('Description')
includeRegex('.*')
jobFilters {
statusFilter {
statusFilter(true)
}
}
jobNames([].toSet())
recurse(true)
}
}
}
```Simple example with folder:
```
folder('MyProject') {
views {
calendarView {
name('CalendarName')
description('Description')
includeRegex('.*')
jobFilters {
statusFilter {
statusFilter(true)
}
}
jobNames([].toSet())
recurse(true)
}
}
}
```## Changelog
### v0.3.2 (released 2022-01-19)
* Feature: [[JENKINS-60868]](https://issues.jenkins-ci.org/browse/JENKINS-60868) Support for [Parameterized Scheduler Plugin](https://plugins.jenkins.io/parameterized-scheduler/) added
* Feature: [[JENKINS-61867]](https://issues.jenkins-ci.org/browse/JENKINS-61867) Calendar can show actual builds, planned polling or both
* Fix: README.md updated to convention
* Fix: All Node dependencies classified 'critical' have been updated### v0.3.1 (released 2018-09-04)
* Fix: [[JENKINS-53312]](https://issues.jenkins-ci.org/browse/JENKINS-53312) Future scheduled builds for pipeline jobs were missing### v0.3.0 (released 2018-08-24)
* Feature: add option to show week numbers
* Feature: navigate to day and week views via day and week numbers
* Feature: show successful builds as green when the [Green Balls Plugin](https://plugins.jenkins.io/greenballs) is installed
* Feature: highlight selected builds
* Fix: delay popups to prevent them from showing up unwanted
* Fix: scroll to builds that are outside of viewport when navigating back and forth between builds
* Fix: builds that last the entire visible time range are now included
* Fix: start time for future builds used current seconds instead of always starting at zero seconds
* Fix: scheduled builds with hashes in cron expression had wrong start time
* Fix: builds showed up as past and future builds while they were running### v0.2.1 (released 2018-08-06)
* Fix: [[JENKINS-52797]](https://issues.jenkins-ci.org/browse/JENKINS-52797) ClassCastException for Matrix Projects
* Fix: calcution of next start date was wrong when there were multiple cron expressions
* Fix: builds overlapping the edge of the date range were not being shown### v0.2.0 (released 2018-07-25)
* Feature: show popup with more information when hovering over a past or future build### v0.1.1 (released 2018-07-13)
* Fix: special HTML characters in custom date/time formats were escaped twice
* Fix: some typos and other minor issues in documentation
* Fix: better validation for view configuration options### v0.1.0 (released 2018-07-11)
* Initial release## Links
* [Jenkins CI](https://ci.jenkins.io/job/Plugins/job/calendar-view-plugin/) ([Blue Ocean](https://ci.jenkins.io/blue/organizations/jenkins/Plugins%2Fcalendar-view-plugin/branches))
* [Wiki](https://wiki.jenkins.io/display/JENKINS/Calendar+View+Plugin)
* [Plugin Site](https://plugins.jenkins.io/calendar-view)
* JIRA: [Unresolved Issues](https://issues.jenkins-ci.org/issues/?filter=18648) | [All Issues](https://issues.jenkins-ci.org/issues/?filter=18647)