Revert creating a view as part of the Jenkins DSL as it did not allow to create the view as part of a folder/sub-view

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1793754 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2017-05-04 08:52:44 +00:00
parent 350f9d6f2a
commit 454a0cc577

View File

@ -338,6 +338,8 @@ for more details about the DSL.</b>
} }
} }
/* I tried to put the view into a sub-folder/sub-view, but failed, there are multiple related
plugins so this is all a bit confusing :(, see also https://issues.apache.org/jira/browse/INFRA-14002
dashboardView("P/POI-new") { dashboardView("P/POI-new") {
columns { columns {
status() status()
@ -354,13 +356,13 @@ dashboardView("P/POI-new") {
jacoco() jacoco()
} }
description("Jobs related to building/testing Apache POI") description("Jobs related to building/testing Apache POI")
filterBuildQueue(true) filterBuildQueue(false)
filterExecutors(false) filterExecutors(false)
// Job selection // Job selection
jobs { jobs {*/
regex(/.*POI.*/) //regex(/.*POI.*/)
} /*}
// Layout // Layout
topPortlets { topPortlets {
@ -378,4 +380,4 @@ dashboardView("P/POI-new") {
testStatisticsGrid() testStatisticsGrid()
buildStatistics() buildStatistics()
} }
} }*/