Re: Jenkins / Unity / Guthub integration

2023-08-03 Thread 'Björn Pedersen' via Jenkins Users
andrew@googlemail.com schrieb am Freitag, 28. Juli 2023 um 14:28:33 UTC+2: I am novice to using Unity and Jenkins. make: [makefile:57: default] Error 1 (ignored) + echo 0 How do I get Unity/Jenkins to detect that the individual test has failed. The icing on the cake would be to somehow

Semantics of "Label_1 || Label_2"

2023-08-03 Thread 'Dirk Heinrichs' via Jenkins Users
Hi, I wonder how the label expression "Label_1 || Label_2" exactly works. Is it equivalent to the following Groovy label assignment script or does it work differently? import jenkins.model.Jenkins return (Jenkins.instance.getLabel('Label_1').getIdleExecutors() > 0 ? 'Label_1' : 'Label_2') T