0

我有 3 个测试命令要在构建后运行,但我想根据 git 提交消息中的关键字运行这些命令。

Commit message: 'New changes [CoreTest]'

if(CoreTest){
   Run coreTest shell command for spoon
}else if(CloudTest){
   Run CloudTest shell command for spoon
}
else{
   AllTests shell command for spoon
}
4

1 回答 1

0

尝试参数化插件来完成这项工作

(将 Coretest 值作为参数传递)

于 2015-07-14T12:52:49.467 回答