Try putting project.triggered_by = [] in cruise_config.rb. That should
do the trick.
Also, if you look through project.rb, you'll notice that decision to
trigger the build is made Project#build_necessary?. So you can even
just override that method itself in cruise_config.rb:
class << project
def build_necessary?
false
end
end
Note, however, that unlike project.triggered_by= (which is part of a
documented configuration API surface), the freestyle hacking of
internals is only guaranteed to work until you try to upgrade your
CC.rb version to the next release. So, beware.
-- Alex
_______________________________________________
Cruisecontrolrb-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/cruisecontrolrb-users