From 560cc85ad79d9b25788af30d6df446b75c5ec75d Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Thu, 4 May 2017 08:40:12 +0000 Subject: [PATCH] Try to define the view as part of the Jenkins DSL, also try to move the view into sub-folder, see also INFRA-14002 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1793752 13f79535-47bb-0310-9956-ffa450edef68 --- jenkins/create_jobs.groovy | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) 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. } } } + +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() + } +}