如何在詹金斯管道中比较日期

时间:2019-06-03 11:38:55

标签: jenkins jenkins-pipeline

需要比较以下格式的日期-yyyy-mm-dd HH:MM:SS

我尝试使用Date.Parse,但是不允许使用Groovy Sandbox,我需要在脚本化管道中进行比较。

No such static method found: staticMethod java.util.Date parse java.lang.String java.lang.String. Administrators can decide whether to approve or reject this signature.
[Pipeline] End of Pipeline
[Office365connector] No webhooks to notify
org.jenkinsci.plugins.scriptsecurity.sandbox.RejectedAccessException: No such static method found: staticMethod java.util.Date parse java.lang.String java.lang.String
    at

1 个答案:

答案 0 :(得分:1)

need to approve the Date.parse,或使用允许的沙盒

 new SimpleDateFormat(format).parse(input)