Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extensive list of Jenkins job statuses?

I am using jenkinsapi for python for some analysis of a big load of Jenkins jobs. Depending on the status of the jobs, I want to do different things with each of them. Is there some sort of overview over all possible statuses a Jenkins job can have? I would like to have that, so that I can handle each case differently. So far, I have only encountered "SUCCESS", "FAILURE", and "UNSTABLE".

like image 802
Clang Avatar asked Feb 12 '16 12:02

Clang


1 Answers

According to the source code at Result.java you have SUCCESS, UNSTABLE, FAILURE, NOT_BUILT or ABORTED.

like image 161
Radu Ionescu Avatar answered Sep 30 '22 11:09

Radu Ionescu