0

I have 3 test commands to run on post build but I want to run these commands based on keyword in the git commit message.

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
}
Shivaraj Patil
  • 8,186
  • 4
  • 29
  • 56

1 Answers1

0

Try parametrized plugin to do this job

( pass Coretest value as parameter )

mahinlma
  • 1,208
  • 3
  • 11
  • 24