Author: centic
Date: Thu May  4 08:40:12 2017
New Revision: 1793752

URL: http://svn.apache.org/viewvc?rev=1793752&view=rev
Log:
Try to define the view as part of the Jenkins DSL, also try to move the view 
into sub-folder, see also INFRA-14002

Modified:
    poi/trunk/jenkins/create_jobs.groovy

Modified: poi/trunk/jenkins/create_jobs.groovy
URL: 
http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1793752&r1=1793751&r2=1793752&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Thu May  4 08:40:12 2017
@@ -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()
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to