ERROR: BuildConnectorRunner.run - '<' not supported between instances of 'JenkinsBuild' and 'JenkinsBuild'
This can be caused by having a Jobs section and a Folder section configured and a job in the Jobs section belongs to a folder in the Folders section.
In this example, the folder Aegon has a pipeline job under it called My-Test-Job:
Both are specified in the configuration:
Folders: - Folder: Aegon AgileCentral_Project: Jenkins Jobs: - Job: My-Test-Job AgileCentral_Project: Jenkins
This scenario will result in the above error because the Jobs and Folders sections are additive, in that they are intended to created a larger list of builds to synchronize as opposed to the Folder section being considered a constraint for Jobs.
#Folders:
# - Folder: Aegon
# AgileCentral_Project: Jenkins
Jobs:
- Job: My-Test-Job
AgileCentral_Project: Jenkins
Folders:
- Folder: Aegon
AgileCentral_Project: Jenkins
#Jobs:
# - Job: My-Test-Job
# AgileCentral_Project: Jenkins