3

Our build process generates a couple of files (with extension .file for sake of argument) that are automatically checked into git at the end of the process. This checkin triggers a new build so we have an infinite loop of builds triggering each other.

I have tried to solve this by using the following exclusion based build trigger options but neither seems to work:

-:**.file

-:comment=^automated checkin$:**

Is there something obvious I am missing?

Dave Schweisguth
  • 36,475
  • 10
  • 98
  • 121
el-milligano
  • 2,146
  • 1
  • 13
  • 6

1 Answers1

5

We have a simple rule to prevent .sql files checked into SVN from triggering a build with the following rule in the VCS Trigger Rules textbox:

-:**.sql

Maybe make sure the checkins only have files with the .file extension and no other file types.

Gloopy
  • 37,767
  • 15
  • 103
  • 71