How can I call an assembly using a VCS trigger without checking any files

I am using TeamCity 8.1.2 and I need to call a build when someone checks a file in a specific directory, but I do NOT want TeamCity to check files from that directory. I have a process that I need to start and I need a TeamCity launch mechanism without a validation mechanism.

I have a VCS trigger set and tried adding some trigger rules that trigger a build when a file is checked out in my directory which I control, but this really only works if you have check rules set up.

I tried to remove all checkout rules, but TeamCity just tried to check every file from the root.

I tried to add an exclude all (- :.) validation rule, but then the build never starts.

Can anyone please help?

+3


source to share


1 answer


You can create a build configuration in VCS checkout mode "Do not check automatically" and do not configure checkout rules.



+4


source







All Articles