在jenkins中构建项目时,将通过以下消息跳过maven安装步骤:
Stage "Maven Install" skipped due to when conditional
Jenkins文件的内容如下:
@Library('scheduling-pipeline') _
standardPipeline {
skip_jacoco_report = true
agent = "AssemblyBuild"
use_private_maven_repo = true
skip_pom_check = true
}
我认为这不会发生。关于我应该在哪里寻找原因的任何想法?