trigger build on git tag creation

2012-05-23 Thread Zoltan Gyarmati
Hi, is there any way to tell to Jenkins/Git plugin to trigger a build only when a new tag is created on the git master? Currently i'm using scm polling, and for now i would like to avoid to set up hooks in the git repo to trigger a build. Thx for any hints or ideas in advance. Zoltan

Re: How to make a shell script quieter?

2012-04-11 Thread Zoltan Gyarmati
Hi, it's more a bash question than jenkins, but the point is, Jenkins calls the bash with -x option enabled, which also prints the invoked commands, with a "+" prefix You can disable it with with the "set +x" command form your script, try it with this snippet: """

Re: Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Zoltan Gyarmati
Hi Chris, well, it depends on your compiler, but you might want to check out gcov, with the gcovr script and the Cobertura plugin. see for example here: http://www.semipol.de/archives/320 On 03/27/2012 09:40 AM, Chris Withers wrote: Hi All, Which C++ code coverage tool would you guys recomm