Reputation: 1798
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
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