Jenkins Pipelines Summary
Posted sayiqiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jenkins Pipelines Summary相关的知识,希望对你有一定的参考价值。
示例1:
pipeline{ agent {label "xxx"} // label is a special machine registered in Jenkins environment{ CLONE_TRAINER_TEST_CMD = ‘‘‘ cd $wksp // shell command ‘‘‘ START_TRAINER_TEST_CLIENT_CMD = ‘‘‘ // shell command ‘‘‘ } stages{ stage("xxx"){ // can define by yourself, it will display in the beginning of Jenkins output log parallel{ stage("xxx"){ // define by yourself agent {label "xxx"} // a special machine steps{ sh env.CLONE_TRAINER_TEST_CMD sh ‘‘‘ cd $wksp // shell command ‘‘‘ } } stage("xxx"){ agent {label "xxx"} steps{ // shell command } } } } } }
以上是关于Jenkins Pipelines Summary的主要内容,如果未能解决你的问题,请参考以下文章
jenkins学习18 - 把 pytest 运行结果通过 jenkins 发送到邮件正文里
使用带有 Python 和 PyCharm 的 Kubeflow Pipelines SDK 连接到 AI Platform Pipelines