Change order of jobs in Jenkins

jenkins

Solution

Jenkins, by default sorts jobs in ascending order. 1,2,3,A,b,c, etc. However, you may be able to use this Dashboard Plugin to provide something closer to what you're looking for

https://wiki.jenkins-ci.org/display/JENKINS/Dashboard+View

In addition, there is a plugin that sorts jobs in the queue based on priority.

https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin

I came across a JIRA issue for Jenkins which suggested sorting in descending order, but just moving around the order may be something you want to add to JIRA as an issue or look into creating a plugin for this purpose.

https://wiki.jenkins-ci.org/display/JENKINS/Plugin+tutorial

One simple thing to do would be to add a number to the beginning of the jobs' names to indicate where they should be in the list.

1 - Job 2 2 - Job 3 3 - Job 1

Problem

In my Jenkins dashboard I have four jobs. ``` job a job b job c job d ``` Is it possible to change the order in which these jobs are displayed? Thanks

Original source