diff options
-rw-r--r-- | jenkins/create_jobs.groovy | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index 0b2958b9b3..ed7e116620 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -337,3 +337,45 @@ for more details about the DSL.</b> } } } + +dashboardView("P/POI-new") { + columns { + status() + weather() + configureProject() + buildButton() + cronTrigger() + lastBuildConsole() + name() + lastSuccess() + lastFailure() + lastDuration() + //lastSuccessDescription() + jacoco() + } + description("Jobs related to building/testing Apache POI") + filterBuildQueue(true) + filterExecutors(false) + + // Job selection + jobs { + regex(/.*POI.*/) + } + + // Layout + topPortlets { + jenkinsJobsList { + displayName('POI jobs') + } + } + leftPortlets { + testStatisticsChart() + } + rightPortlets { + testTrendChart() + } + bottomPortlets { + testStatisticsGrid() + buildStatistics() + } +} |