Browse Source

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
pull/53/head
Dominik Stadler 7 years ago
parent
commit
454a0cc577
1 changed files with 7 additions and 5 deletions
  1. 7
    5
      jenkins/create_jobs.groovy

+ 7
- 5
jenkins/create_jobs.groovy 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") {
columns {
status()
@@ -354,13 +356,13 @@ dashboardView("P/POI-new") {
jacoco()
}
description("Jobs related to building/testing Apache POI")
filterBuildQueue(true)
filterBuildQueue(false)
filterExecutors(false)

// Job selection
jobs {
regex(/.*POI.*/)
}
jobs {*/
//regex(/.*POI.*/)
/*}

// Layout
topPortlets {
@@ -378,4 +380,4 @@ dashboardView("P/POI-new") {
testStatisticsGrid()
buildStatistics()
}
}
}*/

Loading…
Cancel
Save