如何为Jenkins管道httpRequest方法传递一系列validResponseCodes

时间:2017-07-21 13:03:21

标签: jenkins jenkins-pipeline

如何为Jenkins管道validResponseCodes方法传递httpRequest范围?

以下是此方法的参考: https://jenkins.io/doc/pipeline/steps/http_request/#httprequest-perform-an-http-request-and-return-a-response-object

文档说它是一个字符串。并且没有提供更多示例。

我希望有效的响应代码为200 - 400,并且由于响应代码400而构建不会失败。

1 个答案:

答案 0 :(得分:5)

validResponseCodes应该是从:到或单个值的间隔。 在你的情况下,它将是

httpRequest url: someUrl, validResponseCodes: '200:400'

有关详细信息,请参阅HttpRequest课程。