Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我即将在我的自动化项目(我正在使用 Jbehave)上运行并行测试,但我想知道我是否需要在我的代码中创建会话管理(线程管理),或者 Jenkins 是否可以为我执行此操作。谢谢 !
使用以下插件来完成您的任务:
构建流插件
多任务插件
您可以在构建流程作业的帮助下运行顺序作业和并行作业。
例子:
管道作业:
build("job1") build("job2")
并行作业:
parallel( build("job1") build("job2") )