开发者

SVN Call Hudsonserver/Job/TheJob/polling without open Browser

开发者 https://www.devze.com 2023-03-11 18:14 出处:网络
I have a Projekt that\'s hosted on Subversion. And i use the Jenkins (old Hudson) for Continoues Integration.

I have a Projekt that's hosted on Subversion. And i use the Jenkins (old Hudson) for Continoues Integration.

Now i make a batch-file as Subversion-PostCommithook thats run this command.

start http://hudsonserver/job/TheJob/polling

I don't want to poll every 2 minutes. I want to Notify the Hudsonserver.

But after a while it hasend any effekt and i see, that in the taskmanager there are open many iexplorer.exe.

I think it open anytime a new Browser.

How i deaktivate op开发者_C百科en the Browser at the StartCommand, to call the URL without open a Browser?


Use Wget for Windows: http://gnuwin32.sourceforge.net/packages/wget.htm Or any other console HTTP clients

E.g. instead of start http://hudsonserver/job/TheJob/polling

write: wget.exe -O - http://hudsonserver/job/TheJob/polling

0

精彩评论

暂无评论...
验证码 换一张
取 消