Rostislav V
Rostislav V

Reputation: 1798

How to display a custom number of runs in jenkins pipeline view

I'm using Jenkins 2.73.3 and I always see last 10 runs displayed when I open my pipeline. Is it possible to display, for example only 5 or 20? where can I configure this?

Upvotes: 3

Views: 1147

Answers (1)

madhead
madhead

Reputation: 33442

As per their docs you should set up a system property com.cloudbees.workflow.rest.external.JobExt.maxRunsPerJob to something other than 10. This will affect all the jobs and requires a Jenkins restart, though.

Upvotes: 3

Related Questions