[JIRA] (JENKINS-15800) Error puling changes
Dmitry Sviridov created JENKINS-15800 Error puling changes Issue Type: Bug Assignee: Jesse Glick Components: mercurial Created: 12/Nov/12 8:59 AM Description: Started on Nov 12, 2012 12:45:50 PM ERROR: Failed to record SCM polling for hudson.model.FreeStyleProject@127249b[ProjectName] java.lang.ArrayIndexOutOfBoundsException: 1 at hudson.Launcher$2.launch(Launcher.java:712) at hudson.Launcher$ProcStarter.start(Launcher.java:346) at hudson.plugins.mercurial.MercurialSCM.joinWithPossibleTimeout(MercurialSCM.java:308) at hudson.plugins.mercurial.MercurialSCM.pull(MercurialSCM.java:302) at hudson.plugins.mercurial.MercurialSCM.compareRemoteRevisionWith(MercurialSCM.java:252) at hudson.scm.SCM._compareRemoteRevisionWith(SCM.java:356) at hudson.scm.SCM.poll(SCM.java:373) at hudson.model.AbstractProject._poll(AbstractProject.java:1471) at hudson.model.AbstractProject.poll(AbstractProject.java:1404) at hudson.triggers.SCMTrigger$Runner.runPolling(SCMTrigger.java:420) at hudson.triggers.SCMTrigger$Runner.run(SCMTrigger.java:449) at hudson.util.SequentialExecutionQueue$QueueEntry.run(SequentialExecutionQueue.java:118) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334) at java.util.concurrent.FutureTask.run(FutureTask.java:166) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) Environment: Windows XP x86, JDK 1.7.0_07-b11, Apache Tomcat/7.0.32, Jenkins ver. 1.489 Mercurial plugin 1.42 Project: Jenkins Priority: Major Reporter: Dmitry Sviridov This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira
[JIRA] (JENKINS-10856) Incorrect Cyrillic symbols in Console output
[ https://issues.jenkins-ci.org/browse/JENKINS-10856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dmitry Sviridov updated JENKINS-10856: -- Attachment: msbuild-plugin-1.12.1.zip merge changes with 1.12.1 > Incorrect Cyrillic symbols in Console output > > > Key: JENKINS-10856 > URL: https://issues.jenkins-ci.org/browse/JENKINS-10856 > Project: Jenkins > Issue Type: Bug > Components: msbuild >Affects Versions: current > Environment: Windows 7 Rus >Reporter: Dmitry Sviridov >Assignee: Gregory Boissinot >Priority: Minor > Attachments: msbuild-plugin-1.11.1.zip, msbuild-plugin-1.12.1.zip, > msbuild-plugin-1.8.1.1.Zip, msbuild.hpi, screen.zip > > > Incorrect Cyrillic symbols in Console output. > Can be solved by change MsBuildBuilder class > Line 122 from: > if (!launcher.isUnix()) { > args.prepend("cmd.exe", "/C"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > To: > if (!launcher.isUnix()) { > String winCodepage = "1251"; > args.prepend("cmd.exe", "/C", "chcp", winCodepage, ">", "NUL", > "&"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > But winCodepage nead add to configure. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira
[JIRA] (JENKINS-10856) Incorrect Cyrillic symbols in Console output
[ https://issues.jenkins-ci.org/browse/JENKINS-10856?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=159647#comment-159647 ] Dmitry Sviridov commented on JENKINS-10856: --- Can I push changes in repo? > Incorrect Cyrillic symbols in Console output > > > Key: JENKINS-10856 > URL: https://issues.jenkins-ci.org/browse/JENKINS-10856 > Project: Jenkins > Issue Type: Bug > Components: msbuild >Affects Versions: current > Environment: Windows 7 Rus >Reporter: Dmitry Sviridov >Assignee: gbois >Priority: Minor > Attachments: msbuild-plugin-1.11.1.zip, msbuild-plugin-1.8.1.1.Zip, > msbuild.hpi, screen.zip > > > Incorrect Cyrillic symbols in Console output. > Can be solved by change MsBuildBuilder class > Line 122 from: > if (!launcher.isUnix()) { > args.prepend("cmd.exe", "/C"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > To: > if (!launcher.isUnix()) { > String winCodepage = "1251"; > args.prepend("cmd.exe", "/C", "chcp", winCodepage, ">", "NUL", > "&"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > But winCodepage nead add to configure. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira
[JIRA] (JENKINS-10856) Incorrect Cyrillic symbols in Console output
[ https://issues.jenkins-ci.org/browse/JENKINS-10856?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=159646#comment-159646 ] Dmitry Sviridov commented on JENKINS-10856: --- No. I just clone repository and fix problem, but in main repository problem still exist. My solution i put in file msbuild-plugin-1.11.1.zip. > Incorrect Cyrillic symbols in Console output > > > Key: JENKINS-10856 > URL: https://issues.jenkins-ci.org/browse/JENKINS-10856 > Project: Jenkins > Issue Type: Bug > Components: msbuild >Affects Versions: current > Environment: Windows 7 Rus >Reporter: Dmitry Sviridov >Assignee: gbois >Priority: Minor > Attachments: msbuild-plugin-1.11.1.zip, msbuild-plugin-1.8.1.1.Zip, > msbuild.hpi, screen.zip > > > Incorrect Cyrillic symbols in Console output. > Can be solved by change MsBuildBuilder class > Line 122 from: > if (!launcher.isUnix()) { > args.prepend("cmd.exe", "/C"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > To: > if (!launcher.isUnix()) { > String winCodepage = "1251"; > args.prepend("cmd.exe", "/C", "chcp", winCodepage, ">", "NUL", > "&"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > But winCodepage nead add to configure. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira
[JIRA] (JENKINS-10856) Incorrect Cyrillic symbols in Console output
[ https://issues.jenkins-ci.org/browse/JENKINS-10856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dmitry Sviridov updated JENKINS-10856: -- Attachment: msbuild-plugin-1.11.1.zip merge changes with 1.11 > Incorrect Cyrillic symbols in Console output > > > Key: JENKINS-10856 > URL: https://issues.jenkins-ci.org/browse/JENKINS-10856 > Project: Jenkins > Issue Type: Bug > Components: msbuild >Affects Versions: current > Environment: Windows 7 Rus >Reporter: Dmitry Sviridov >Assignee: gbois >Priority: Minor > Attachments: msbuild-plugin-1.11.1.zip, msbuild-plugin-1.8.1.1.Zip, > msbuild.hpi, screen.zip > > > Incorrect Cyrillic symbols in Console output. > Can be solved by change MsBuildBuilder class > Line 122 from: > if (!launcher.isUnix()) { > args.prepend("cmd.exe", "/C"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > To: > if (!launcher.isUnix()) { > String winCodepage = "1251"; > args.prepend("cmd.exe", "/C", "chcp", winCodepage, ">", "NUL", > "&"); > args.add("&&", "exit", "%%ERRORLEVEL%%"); > } > But winCodepage nead add to configure. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira