Markus Weninger
Markus Weninger

Reputation: 12648

How can I show all Jenkins jobs in one view, even if they are contained in folders?

I want to see all jobs that are defined on our Jenkins.

We use folders to structure our jobs, yet we also would like to have an overview view of all jobs without this folder structure, i.e., a flattened list of our jobs.

Upvotes: 1

Views: 1721

Answers (1)

Markus Weninger
Markus Weninger

Reputation: 12648

The first step is to create a new view:

Create new view

This view has to be named and as view type one has to select "List View":

Name and select "List View"

In the configuration view, following points have to be set:

  • Recurse in subfolders: yes
  • Use a regular Expression to include jobs into the view: yes
  • Regular expression: .*

Enter all settings



This lists all jobs running on Jenkins in one view.

Upvotes: 5

Related Questions