[00:00:03] *** Austin__ has left #jenkins [00:06:11] *** joshsmith has joined #jenkins [00:06:30] *** matt_c is now known as mpm_jenkins [00:07:58] *** mpm_jenkins is now known as matt_c [00:08:09] *** _marc` has quit IRC [00:13:54] *** afex has joined #jenkins [00:18:45] *** ceagan has joined #jenkins [00:19:38] <ceagan> Does anyone have any advice for how to switch my Debian/APT installed hudson over to Jenkins? [00:19:51] <ccutrer> http://wiki.jenkins-ci.org/display/JENKINS/Migration+from+Hudson+to+Jenkins [00:20:14] <ceagan> I bet you pasted that a lot today :) [00:20:30] <ccutrer> I had to change the /etc/apt/sources.list.d/hudsonsomethingorother to point at jenkins-ci.org instead of hudson-labs.org [00:20:33] <rtyler> kohsuke only recently posted [00:20:35] <ccutrer> then aptitude update [00:21:33] <ccutrer> the only big gotcha is that jenkins will now run as user "jenkins" rather than "hudson", so if you do something like ssh slaves or git repos that assume the current user is "jenkins", you'll need to change them [00:21:41] <ccutrer> (which is why I haven't actually done it yet) [00:21:54] <ccutrer> current user is "hudson"* [00:24:44] <ceagan> I think all my scripts use the "builder" username so I should be good [00:29:08] <ceagan> It does take a fair amount of time to chown all the files to jenkins [00:30:25] *** calavera has quit IRC [00:31:30] *** kenneth_reitz has quit IRC [00:34:28] <ceagan> Looks like migration on Debian works flawlessly! Thanks! [00:36:01] <cowboyd> when a new model gets created from descriptor.newInstance() off of /configSubmit where is it that hudson tries to persist it? [00:39:24] *** myusuf3_ has joined #jenkins [00:39:51] <kohsuke> Updated the migration guide to discuss how you can keep the 'hudson' user [00:40:21] <cowboyd> shouldn't it be an 'upgrade' guide and not a 'migration' guide? :) [00:40:43] <cowboyd> anyhow, I think that xstream is going crazy when it sees a jruby object, and if possible, I'd like to completely override that process. [00:44:55] <kohsuke> cowboyd: yes, XStream is flexible enough to do that [00:45:12] <kohsuke> it's not like a 3 line change, for sure, but I'm pretty sure it can be done. [00:46:06] *** elliot has quit IRC [00:46:25] *** aheritier has quit IRC [00:48:39] *** aheritier has joined #jenkins [00:49:16] <dhackner> abayer: how do I specify the job group for throttling purposes? [00:49:29] *** Heimidal_ has quit IRC [00:49:53] <abayer> Add the category in Manage Jenkins (or hudson, etc) and then it should show up as an option when you select Throttle Concurrent Builds on an individual job. [00:51:55] *** Optic has joined #jenkins [00:52:05] <dhackner> sorry... where in manage hudson am I looking? [00:52:22] <abayer> Look for Throttle Concurrent Builds - should be a section for it. [00:52:39] <dhackner> ah I see it now, thanks [00:53:04] *** Heimidal has joined #jenkins [00:53:36] *** Heimidal has joined #jenkins [00:54:08] <dhackner> is the fact that I can select the Max Total Builds on both the job page and the manage page redundant? [00:54:31] <abayer> Leave it 0 on the job page - that's for if that particular build is set up for concurrent builds and you want to limit it. [00:54:52] <dhackner> ok gotcha [00:56:06] <dhackner> looks like it works! [00:56:25] <dhackner> only weirdness I see is that it says it's waiting for an available executor on the node it's tied to [00:56:46] <dhackner> but that node is free, it's actually waiting for another job in the category to finish [00:57:03] <abayer> Yeah, had to reuse messages. =) [00:57:14] <dhackner> cool [00:58:53] *** cowboyd has quit IRC [01:01:37] *** natacado has joined #jenkins [01:01:45] *** olamy has quit IRC [01:01:48] <dhackner> abayer: this doesn't seem to handle the problem of queued jobs [01:02:02] <abayer> ? [01:02:09] <dhackner> if job 1 is running and I queue job 2 and then job 1, after job 1 finished, both 1 and 2 will run [01:02:15] <dhackner> is this user error? [01:02:26] <abayer> Really? Thought it handled that - I'll take a look when I get a chance. [01:03:03] <natacado> hey folks, I have a git plugin question: We have a branching strategy where new releases are tagged (branchless) commits. The plugin is configured w/o a branch spec, but doesn't find the commits to build. Is this is a bug, or by design? [01:03:09] *** ceagan has quit IRC [01:03:23] <abayer> You need to specify the tag to build, at least. [01:03:32] <abayer> Or commit hash, etc. [01:03:47] <natacado> abayer: any way to do that one-off programmatically? [01:04:09] <abayer> Not sure what you mean. [01:04:09] *** jonath2002 has joined #jenkins [01:06:05] <natacado> i have a single hudson/jenkins project that builds any commit to the git repository. It finds and builds new branches w/o issue, but if I push a commit that's not on a branch (only a tag) and run the hudson job, it doesn't find the commit and instead rebuilds the latest commit on the last branch that was updated. [01:06:24] <natacado> perhaps i'm going about this the wrong way [01:06:39] <abayer> Ah. Yeah, I don't know - it's not a new commit if it's just a tag, so it's not going to find it automatically. [01:08:03] <natacado> i used to have 3 different hudson jobs (dev, qa, release) that built those branches independently. it was a pain to keep the job configs in sync, and maintain 3 sets of related services so the jobs could run simultaneously... we just changed to a model where there's a single long-lived branch instead of 3 branches in the codebase, and I was hoping I could just tag qa and release builds [01:08:40] <abayer> No, the git plugin won't detect tags in polling - you have to specify a tag to build against a tag. [01:09:29] <natacado> OK, makes sense. Any way to do a parameterized build so that it usually builds "whatever branch is most recent" and sometimes I can override it with a specific tag/SHA/refname? [01:10:24] *** punkman has joined #jenkins [01:10:26] *** Optic has left #jenkins [01:10:29] <abayer> Yeah - have a parameter that defaults to empty string, and use that parameter as the branch spec. [01:12:33] <evilchili> Hrm. Can you not copy artifacts from a project by specifying a particular set of build parameters? I know it works with matrix jobs [01:12:41] <evilchili> but parameterized builds don't seem to take [01:15:06] *** dhackner has quit IRC [01:16:49] <natacado> abayer: Does the git plugin do parameter expansion? If I set the branch specifier to ${BRANCH_SPECIFIER} it literally tries to run 'git rev-parse origin/${BRANCH_SPECIFIER}' [01:17:09] <abayer> It should - what version are you on? [01:17:30] <natacado> git HEAD plus my pull requests from a few days ago. :-) [01:17:52] <abayer> Hrm. Weird - it does do parameter expansion. Try just $BRANCH_SPECIFIER, maybe? [01:17:53] <natacado> perhaps i've got the syntax wrong? Is it ${foo} or something other than curly brackets? [01:18:39] <natacado> that turned into 'git rev-parse origin/' - closer. :-) [01:18:54] <abayer> Aaaah. It's still seeing empty string as a branch. [01:19:14] <natacado> yep. parameter expansion working, logic behind it not quite. [01:19:33] <abayer> Open a bug and I'll try to get that fixed in the next day or so. [01:21:08] <natacado> FYI, changing the parameter default from empty string to ** is a workaround [01:22:33] <natacado> thanks for the help; i'll get a bug filed [01:22:41] <abayer> np np - thanks for catching a bug. =) [01:27:30] *** elpargo has quit IRC [01:28:22] *** lacostej has quit IRC [01:30:01] *** Heimidal has quit IRC [01:32:32] *** mconigliaro has quit IRC [01:39:30] <evilchili> mindless: in the copy artifacts plugin, I'd like to be able to use syntax in place for matrix jobs for parameterized jobs as well. Ie, I'd like to be able to copy artifacts from the last successful build of JOB/PARAM1=foo,PARAM2=bar. Would this be an easy addition? [01:40:07] <mindless> um [01:40:20] <mindless> you mean scanning thru builds of that job to find one with those params? [01:40:25] <evilchili> yeah [01:40:40] <mindless> hm [01:41:14] <mindless> a bit tricky because that box is supposed to select a job, and the other selection is for which build [01:41:57] <Tartarus> So, wiki question? Do plugins need to be manually moved over or is that still in progress? [01:42:01] <mindless> but go ahead and file a feature request.. i can take a look to see how it might work [01:42:02] *** mattbillenstein_ is now known as mattbillenstein [01:42:10] <evilchili> mindless: will do. thanks! [01:42:27] <mindless> Tartarus: wiki pages for plugins? they are there at wiki.jenkins-ci.org [01:42:41] <Tartarus> maybe the plugins page is missing some magic? [01:42:54] <Tartarus> http://wiki.jenkins-ci.org/display/JENKINS/Plugins is sparse [01:42:56] <mindless> yes [01:43:04] <mindless> ~2 mins until fix [01:43:11] <Tartarus> ok thanks [01:43:14] *** mattbillenstein has quit IRC [01:43:15] <mindless> http://confluence.atlassian.com/display/DOC/Confluence+3.4.7+Upgrade+Notes mentioned this problem and it said to rebuild the index [01:43:19] <mindless> which I started a few min ago [01:43:39] *** lacostej has joined #jenkins [01:44:20] <mindless> ok, let's see if it worked [01:44:48] <mindless> looks good! [01:45:09] *** joewilliams is now known as joewilliams_away [01:46:02] *** joewilliams_away is now known as joewilliams [01:46:12] <autojack> does Hudson source a .profile when it runs shell scripts as part of a build job? [01:46:16] <autojack> it's looking like it doesn't. [01:47:34] *** hugod_ has quit IRC [01:47:56] *** Omni|Work has joined #jenkins [01:48:01] * Omni|Work laughs. [01:48:06] <Omni|Work> I'm so highly amused. [01:48:30] <Omni|Work> Yet another Open Source project flees Oracle since Oracle has no clue how to manage them. [01:48:57] <mindless> we'd laugh but we had to feel the pain [01:48:59] <rtyler> Omni|Work: the assumption of needing to "manage" us was part of the problem :) [01:49:14] * Omni|Work nods. [01:49:18] <rtyler> the community is not like a big truck you just dump stuff on [01:49:21] <rtyler> we're a series of tubes [01:49:28] * Omni|Work chuckles. [01:49:51] <autojack> http://nerdnetworks.org/images/series_of_tubes.jpg [01:49:51] <Omni|Work> Does that mean you're all tubers? [01:49:57] <autojack> that's an original. [01:50:05] <autojack> (C) AUTOJACK [01:50:13] <rtyler> we're all tubular, that much I do know [01:50:17] * rtyler is also a free radical [01:50:20] <autojack> also plz ignore my question about .profile, it was user err0r [01:50:55] *** Stubbs has quit IRC [01:51:19] <Omni|Work> If you plug someone's nose they become topologically equivalent to a donut, which is also topologically equivalent to a tube. [01:51:35] <rtyler> wat [01:52:31] <evilchili> mindless: created Jenkins 8657. Thanks for looking into it. [01:52:41] *** edorian has quit IRC [01:52:57] <Omni|Work> Are you planning on replacing the hudson artwork as well? [01:53:30] <rtyler> the artwork is mostly from the tango project, so on that end I don't think so [01:53:40] * Omni|Work nods. [01:53:40] *** jieryn-w has joined #jenkins [01:53:41] *** ChanServ sets mode: +v jieryn-w [01:54:28] *** josh_k has joined #jenkins [01:54:28] *** aaron01 has joined #jenkins [01:54:30] <josh_k> JENKINS! [01:54:34] <rtyler> heh [01:54:41] * rtyler hands josh_k some chicken [01:54:59] <Omni|Work> I installed jenkins from yum and now it's not finding any of the artwork or css. [01:56:59] <Omni|Work> Oh, I see. It didn't shut down hudson first. [01:58:08] <Omni|Work> Anyway, thanks to all of you. I'm very pleased with Jenkins and am happy that you all made it. [01:58:31] <Omni|Work> I do have some updates for the CppUnit test parser. :-) [01:58:58] <rtyler> the new contribution process requires submission of all patches over RFC 1149 [01:59:23] <Omni|Work> I don't own any pigeons. [01:59:58] <autojack> how do I get a Hudson shell script to not run with xtrace on? [02:00:04] <Omni|Work> Also, am I required to encapsulate my patches in IP packets? Or can I just send them without headers or packetized? [02:00:05] <autojack> e.g. not run /bin/sh -xe [02:00:13] <mindless> put a #! line at the top [02:00:16] <autojack> I tried set +o xtrace in the script but it does nothing [02:00:17] <kohsuke> autojack: the "help" icon will tell you [02:00:22] <autojack> aha! [02:00:31] <autojack> I just wanted to turn it off for one part. [02:00:31] <rtyler> Omni|Work: UDP pigegrams are preferred [02:00:45] * Omni|Work laughs. [02:02:56] <autojack> ummm [02:04:44] <autojack> ah I see. [02:06:56] *** esteele|away is now known as esteele [02:07:06] <nairb774> anyone familiar with the remoting framework want to look over a bug fix patch/test for JENKINS-8592? [02:07:11] <nairb774> http://issues.jenkins-ci.org/browse/JENKINS-8592 [02:07:12] <jenkins-admin> HUDSON-8592:FilePath.read() triggers remote issues if the file is not read until EOF (Pipe is already closed) (Open) http://jenkins-ci.org/issue/8592 [02:07:14] <jenkins-admin> HUDSON-8592:FilePath.read() triggers remote issues if the file is not read until EOF (Pipe is already closed) (Open) http://jenkins-ci.org/issue/8592 [02:07:31] <nairb774> https://github.com/nairb774/jenkins/commit/bce70e6328b72bb5354d8de3b0054ff302a8c979 [02:16:54] *** joewilliams is now known as joewilliams_away [02:17:39] *** punkman has quit IRC [02:19:32] *** Omni|Work has left #jenkins [02:20:13] *** kenneth_reitz has joined #jenkins [02:22:05] <mindless> nairb774: is this related to another pending change? https://github.com/jenkinsci/jenkins/pull/21 [02:22:50] <mindless> both about remoting, but looks to be in different areas [02:23:05] <mindless> I think kohsuke is the only one who can review and pull these in [02:23:05] <nairb774> looking... [02:23:26] <kohsuke> sorry, still fixing some loose ends in the release [02:23:29] <mindless> submit yours as a pull request.. [02:23:32] <nairb774> Which would be a good thing :) I don't trust my understanding of the code yet [02:24:49] <rpetti> https://github.com/nairb774/jenkins/commit/bce70e6328b72bb5354 [02:24:58] <rpetti> gah, sorry [02:27:45] *** joewilliams_away is now known as joewilliams [02:31:49] <rpetti> The first part of https://github.com/jenkinsci/jenkins/pull/21 should be fixed, I think. The second part makes no sense to me, because there doesn't seem to be any conceivable way that channel.getPipeWindow could return null. [02:43:37] *** kenneth_reitz has quit IRC [02:47:09] *** matt_c has quit IRC [02:48:42] *** matt_c has joined #jenkins [02:49:06] *** bmahe2 has quit IRC [02:49:20] *** bmahe has quit IRC [02:53:08] *** hugod_ has joined #jenkins [02:53:53] *** VooDooNOFX has joined #jenkins [02:54:27] <VooDooNOFX> Just installed the jenkins redhat rpm. I have no images on my web interface. Any solutions? :) [02:55:24] *** esteele is now known as esteele|away [02:56:53] <nairb774> VooDooNOFX, I think the rpm install fails to restart the hudson service [02:57:07] <kohsuke> See the note in http://wiki.jenkins-ci.org/display/JENKINS/Upgrading+from+Hudson+to+Jenkins [02:57:29] *** esteele|away has quit IRC [02:57:58] <nairb774> good call kohsuke [02:59:06] <VooDooNOFX> indeed [02:59:12] <VooDooNOFX> all is well again. ty [02:59:20] *** joshsmith has quit IRC [03:00:01] <VooDooNOFX> with the name change, google knows nothing about jenkins. haha. It was difficult to find anything :) [03:00:17] <kohsuke> That's true. We did lose on there [03:03:13] *** natacado has quit IRC [03:05:33] <VooDooNOFX> I don't think you guys hear it enough from the community, but thank for you work and contributions to making hudson a truly useful and great CI tool. [03:06:09] <VooDooNOFX> it's impossible to calculate the savings me, and i'm sure many others see when using it [03:06:37] <mindless> :-) [03:08:04] *** mindless has quit IRC [03:08:31] <VooDooNOFX> Also, thanks for the easy as hell plug-in system. Click plugins, check off what I need, click go :) [03:08:57] *** noahcampbell has quit IRC [03:13:01] *** kenneth_reitz has joined #jenkins [03:14:48] *** awb has quit IRC [03:15:28] <kohsuke> Thanks for the kinds words. Please help us by spreading the word "Jenkins" out [03:16:10] <nairb774> So would it be a bad thing to comb the old hudson jira for new bugs and fix them in Jenkins, or at least log jenkins issues if they can be reproduced? [03:16:11] <VooDooNOFX> will do [03:16:17] <jieryn-w> yeah, i think the more we get the blogger brigade linking to the new infrastructure, the better our search results will get [03:16:50] <VooDooNOFX> I'm buzzing it to my network of people now [03:17:40] <jieryn-w> i mean actual pages that can be spidered [03:17:53] <jieryn-w> or rather, easily spidered :) [03:20:22] <VooDooNOFX> atm, google'ing 'jenkins' returns some property management company. I'm sure they'll be pissed at the spike of the wrong web traffic :) [03:26:18] <jieryn-w> congratz on 1.396, Jenkins! [03:26:42] <jieryn-w> ..first in flight.. [03:30:15] *** Lewisham has quit IRC [03:30:35] *** joewilliams is now known as joewilliams_away [03:31:36] *** Haloperidol has quit IRC [03:32:01] *** esteele has joined #jenkins [03:36:39] *** Lewisham has joined #jenkins [03:36:39] *** ChanServ sets mode: +v Lewisham [03:38:26] *** Lewisham has quit IRC [03:41:17] <lacostej> I've made a setup that triggers a lot of issues within jenkins. See JENKINS-7745 last comment [03:41:18] <jenkins-admin> HUDSON-7745:CopyArtifact plugin triggers intermittent remoting failures (Reopened) http://jenkins-ci.org/issue/7745 [03:48:39] <lacostej> BTW, I've noticed that we still use the ~/.hudson directory. I guess that's expected, right ? [03:48:53] <kohsuke> Only when you have it [03:49:01] <kohsuke> If you are freshly installing it, it'll pick ~/.jenkins [03:50:49] <lacostej> kohsuke: not with 396 on my box. I moved ~/.hudson into ~/.hudson2 and it recreates it [03:50:57] <kohsuke> Hmm [03:51:36] <kohsuke> This is the code in question: http://jenkins.pastebin.com/hXXb2Nry [03:51:46] <kohsuke> It should work as I said, no? [03:53:57] *** nparry has joined #jenkins [03:54:41] <nparry> FYI, http://jenkins-ci.org/issue/7745 is 302ing to issues.hudson-ci.org [03:54:56] <kohsuke> Thanks. On it now. [03:55:51] <jieryn-w> yikes, anyone else finding http://jenkins-ci.org/issue/7745 routed to http://issues.hudson-ci.org/browse/HUDSON-7745 ? [03:55:52] <jenkins-admin> HUDSON-7745:CopyArtifact plugin triggers intermittent remoting failures (Reopened) http://jenkins-ci.org/issue/7745 [03:56:19] <kohsuke> nparry: fixed now [03:56:33] <nparry> thanks :-) [03:56:36] <jieryn-w> ah, sorry--didn't read enough [03:56:49] <lacostej> I will look into it. maybe something sets the HUDSON_HOME or JENKINS_HOME in my env. [03:57:16] <kohsuke> Thanks for finding it, nparry [03:58:46] *** esteele is now known as esteele|away [04:01:44] *** retornam has quit IRC [04:02:56] *** joewilliams_away is now known as joewilliams [04:05:47] *** jieryn-w has quit IRC [04:06:24] *** jieryn-w has joined #jenkins [04:06:24] *** ChanServ sets mode: +v jieryn-w [04:24:32] *** stephendonner has quit IRC [04:43:01] *** elpargo has joined #jenkins [04:43:44] <lacostej> kohsuke: is the org.jvnet.hudson:executable-war code in git ? that's the cause of the problem: http://grepcode.com/file/repo1.maven.org/maven2/org.jvnet.hudson/executable-war/1.17/Main.java#Main.getHomeDir%28%29 [04:48:29] *** cliffano has joined #jenkins [04:48:42] *** ChanServ sets mode: +v cliffano [04:53:00] <cliffano> is jenkins-ci.org reverted back to the default 'Future home of hudson-labs.org' ? [04:54:46] <rtyler> uh, best not be [04:55:00] <rtyler> cliffano: I see the current stuff [04:56:38] *** joewilliams is now known as joewilliams_away [04:56:44] <cliffano> rtyler: hmm, maybe my proxy is playing up... [04:58:17] <rtyler> potentially [04:59:03] <rtyler> who wants to help me test the mirroring system? :D [05:00:03] <cliffano> rtyler: i must be getting a cached version, here's the e-tag 1488-1f-495c3ef40b800 [05:00:19] <lacostej> cliffano: do you know if the extras SVN directory has a matching git repo ? ( I see you're the last one to have committed in it) [05:01:51] <cliffano> lacostej: not that i know of, but yesterday kohsuke helped me import SVN extras/firefox-extension/buildmonitor to github.com/jenkinsci, then i deleted the SVN one [05:02:20] *** cowboyd has joined #jenkins [05:02:24] *** afex has left #jenkins [05:02:27] <lacostej> ok. Because we need to patch executable-war [05:02:54] *** josh_k has quit IRC [05:03:17] <rtyler> cliffano: that's interesting, we're sending Expires headers down that are in the past [05:03:23] <rtyler> I can't imagine how you're getting cashed crap [05:03:28] <rtyler> er..cached [05:05:58] <rtyler> no volunteers to help me test? :) [05:06:04] <cliffano> rtyler: bizarre indeed, yesterday i could see the new jenkins-ci.org page... i'll check again tomorrow, i have no control of the proxy [05:06:37] <rtyler> is it stock squid? I'm wondering if I can push some headers to forcefully invalidate it :D [05:07:40] *** joewilliams_away is now known as joewilliams [05:08:00] *** aaron01 has quit IRC [05:10:32] *** jfelchner has joined #jenkins [05:11:44] <lacostej> rtyler what do you need to test ? [05:12:38] <cliffano> rtyler: not even sure if it's squid, i'm behind some corporate network atm... it's ok, i thought the home page was reverted :) [05:12:40] <rtyler> I need to know your general geographic location, and I need you to have wget or something similar which can dump debug bits [05:12:46] <rtyler> debug bits of the HTTP request* [05:13:08] <lacostej> is JRE 1.4 still supported as a VM to run jenkins ? [05:13:21] <rtyler> ooof, I'm not sure [05:13:25] <rtyler> Java5 or bust I think [05:13:37] <lacostej> rtyler: I have several servers available. My home place is in Norway [05:14:10] <rtyler> lacostej: great! [05:14:39] <rtyler> `wget --debug "http://mirrors.jenkins-ci.org/war/latest/jenkins.war"` [05:14:44] <rtyler> I just need to know what the md5sum of the downloaded flie, and what mirror you were redirected to [05:17:26] <rtyler> lacostej: the european mirror will be coming online again shortly, so I may ask you to test it twice ;) [05:21:32] *** cliffano has quit IRC [05:21:41] <bradfh> rtyler: From Indianapolis, IN, US: http://pastebin.com/J1E1vBT2 [05:22:24] <rtyler> great, you got a close mirror! :D [05:23:16] <bradfh> indeed [05:23:28] <rtyler> there's only two online right now :P [05:23:36] <rtyler> had to take US West Coast, Asia and Europe offline [05:24:25] *** cliffano has joined #jenkins [05:25:06] <cliffano> rtyler: i'm in AU, MD5 (jenkins.war) = 57655337809c93e40fbad9d1535215ff, Connecting to ftp-chi.osuosl.org|64.50.236.52|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 36665038 (35M) [text/plain] [05:25:30] <rtyler> cliffano: thanks [05:25:40] <evilchili> pittsburgh, pa: Location: http://ftp-nyc.osuosl.org/pub/jenkins/war/1.396/jenkins.war / 57655337809c93e40fbad9d1535215ff [05:25:49] <lacostej> My results: http://jenkins.pastebin.com/h9kdRn9R Here's the script I am using: http://jenkins.pastebin.com/XYv2V1Qe [05:25:52] <rtyler> cliffano: I'll have the asian mirror up soon hopefully, and you won't have to come all the way to the US for jenkins :) [05:26:54] <evilchili> san francisco, pa: Location: http://ftp-nyc.osuosl.org/pub/jenkins/war/1.396/jenkins.war / 57655337809c93e40fbad9d1535215ff [05:27:04] <evilchili> er, san francisco, ca [05:27:04] <evilchili> :x [05:29:08] *** nparry has quit IRC [05:29:33] <rtyler> I think I have enough data points :) [05:31:21] <cliffano> rtyler: thanks, surprisingly, it's often faster to download stuffs from US west coast, less hops perhaps http://www.mymym.com/gfx/Internet%201.jpg - we don't have many lines from down here [05:32:53] <rtyler> cliffano: want to pastebin a traceroute to mirrors.esast.com and to mirror.xmission.com? [05:35:05] <cliffano> rtyler: gimme a sec, i have to switch network first. [05:37:00] *** awb has joined #jenkins [05:39:08] *** cliffano has quit IRC [05:39:09] *** kenneth_reitz has quit IRC [05:39:18] *** nairb774 has quit IRC [05:39:56] *** kenneth_reitz has joined #jenkins [05:40:39] *** nairb774 has joined #jenkins [05:46:07] *** cliffano has joined #jenkins [05:46:35] <cliffano> rtyler: http://pastebin.com/TFkqqwwi [05:46:48] *** ChanServ sets mode: +v cliffano [05:46:55] *** Lewisham has joined #jenkins [05:46:55] *** ChanServ sets mode: +v Lewisham [05:47:26] <cliffano> rtyler: and i got the correct jenkins-ci.org using a different proxy, so it's all good, something must be wrong with the other proxy [05:48:32] *** jfelchner has quit IRC [05:49:36] <rtyler> cliffano: thanks for the traceroute, interesting :) [05:49:46] <rtyler> looks like our asian mirror will still be closer and faster for you though [05:50:24] <rtyler> well [05:50:33] <rtyler> it looks like you entered in the wrong address for one [05:50:46] <rtyler> mirror.east.com != mirrors.esast.com :P [05:53:17] *** cowboyd has quit IRC [05:55:11] <cliffano> rtyler: oh... bummer [05:55:48] <cliffano> a sec [05:56:35] *** cliffano has quit IRC [05:59:51] <rtyler> kohsuke: still getting used to the seeing the name on the war file :P [06:00:04] <kohsuke> I'm getting used to Jenkins now [06:00:20] <kohsuke> I've spent whole day fixing various 'hudson' to 'jenkins' after all [06:00:21] *** cliffano has joined #jenkins [06:00:28] *** ChanServ sets mode: +v cliffano [06:00:40] <cliffano> rtyler: http://pastebin.com/a6zFgxSf for mirros.esast.com [06:01:34] <rtyler> cliffano: your network configuration is weird to me :P [06:01:50] <rtyler> you have to disconnect IRC to traceroute? [06:01:51] <cliffano> lol [06:02:06] <cliffano> certain proxies disallow certain connection [06:02:32] <rtyler> wacky [06:02:53] <cliffano> i blame the network gurus [06:02:57] <rtyler> interesting, looks like xmission and esast.com are pretty close in terms of speed [06:03:01] <rtyler> cliffano: at the office? [06:03:45] <cliffano> yep [06:04:27] <cliffano> connection to east asia should be pretty close to US west, south asia definitely slower [06:05:36] <cliffano> however, for those in west coast of AU, connection to south asia is way faster [06:06:03] <rtyler> cliffano: doesn't telstra run mirrors? [06:06:08] <rtyler> I wonder if we can just get an .au mirror [06:07:37] <lacostej> I noticed that github auto-links to hudson-ci but not to jenkins-ci. Maybe we can add both ? e.g. https://github.com/jenkinsci/jenkins/pull/27 vs https://github.com/jenkinsci/jenkins/pull/24 [06:07:44] <cliffano> rtyler: maybe try http://mirror.aarnet.edu.au/ [06:08:13] *** natacado has joined #jenkins [06:08:48] <kohsuke> lacostej: maybe this is not an autolink? [06:09:00] <kohsuke> I don't think there's such a configuration. [06:10:16] <lacostej> maybe? [06:10:20] <lacostej> ok [06:11:44] <lacostej> Just a quick reminder: I've made a small patch to the deploy plugin: https://github.com/lacostej/deploy-plugin/commit/6457f66a63d2e8f2b990cbf063339abd1384f8e0 Can I just push it in ? [06:11:47] *** jfelchner has joined #jenkins [06:13:34] <rtyler> cliffano: contacting them to see about an .au mirror for ya :D [06:14:58] <cliffano> rtyler: thanks :) [06:16:53] <kohsuke> lacostej: you mean release? [06:16:56] <kohsuke> or just push? [06:17:06] <kohsuke> you should certainly feel free to push [06:17:16] <kohsuke> but it's already pushed, right? [06:18:08] <lacostej> kohsuke: no I mean merge it into the master (I've been advised to make a polite request to the current developers when modifying a plugin I've not touched beforehand) [06:18:20] <lacostej> ok I'll push then [06:19:03] *** jonath2002_ has joined #jenkins [06:19:14] <kohsuke> I think we'll ask mindless to move this to GitHub [06:19:27] <kohsuke> It looks like thus far it's done in Subversion [06:19:36] <kohsuke> But yeah, feel free to push [06:22:58] *** noahcampbell has joined #jenkins [06:23:36] <lacostej> kohsuke: where you talking about the executable-war or the deploy plugin there ? [06:23:51] <lacostej> kohsuke: for the "it's done in subversion" [06:23:56] <kohsuke> deploy plugin [06:24:08] <kohsuke> because the 'svn' branch is in sync with 'master' [06:24:13] <kohsuke> indicating so far all the commits came from Subversion [06:24:48] <lacostej> ok. I should probably way for proper transition then [06:25:25] <lacostej> way->wait [06:25:52] <kohsuke> If you can come back when mindless is here, I think that would be easier [06:26:34] <lacostej> ok. As you may have seen I've found a simple way to reproduce many of the issues categorized in JENKINS-7745 [06:26:35] <jenkins-admin> HUDSON-7745:CopyArtifact plugin triggers intermittent remoting failures (Reopened) http://jenkins-ci.org/issue/7745 [06:26:48] <kohsuke> Oh, really? [06:26:49] *** jenkins-admin has quit IRC [06:26:56] <kohsuke> That's super important bug, isn't it? [06:27:07] <lacostej> top 3 votes [06:27:10] <kohsuke> Yes. [06:27:25] <kohsuke> This is great [06:27:29] <lacostej> the problem is that I get lots of different issues [06:27:33] <lacostej> :) [06:28:05] <lacostej> or should I say symptoms [06:28:10] <lacostej> not sure they are related [06:28:20] <rtyler> kohsuke: I wonder if it'd be worth while to find and set up some mirroring of git repos in .eu [06:28:31] <rtyler> then core contributors could just clone from the local .eu repo and push deltas to github [06:28:50] <kohsuke> Because github is slow in eu? [06:29:26] <rtyler> github is all on rackspace in the US, and jenkins is farking huge :P [06:29:45] <rtyler> kohsuke: the android guys run a number of git mirrors for asia and .eu [06:29:54] <rtyler> just thinking about it while my mind is on mirroring [06:30:06] <kohsuke> If we have people willing to host mirrors, go for it! [06:30:21] <lacostej> rtyler: why not use gitorious.org ? [06:30:25] <lacostej> it's hosted in Norway [06:30:43] <rtyler> I didn't know that [06:30:46] <rtyler> that's certainly a good idea [06:30:49] <lacostej> I can talk to the main developer if you want [06:31:07] <rtyler> I really would only want the git repo, none of the community features of gitorious though [06:31:19] <lacostej> ok [06:31:22] <rtyler> I don't want folks thinking that we would pay attention to issues on gitorious :P [06:31:35] <lacostej> I can ask [06:31:40] * rtyler wonders where git.kernel.org is hosted [06:32:03] <rtyler> kohsuke: since I can't Java, I figure making Jenkins kick as much ass as possible in the infra side of things is where I can help :D [06:32:25] <kohsuke> Yes, I appreciate that very much [06:32:33] <lacostej> git4.kernel.org in sweeden [06:33:03] <lacostej> ok. time to wake up the kids. Have a good day/night all [06:33:56] <rtyler> lacostej: cheers [06:35:38] <rtyler> kohsuke: [00:29] <@Ramereth> rtyler: we can give you more VMs at the OSL if you need something [06:35:43] <rtyler> FYI :) [06:35:51] <kohsuke> That's almost too good to be true [06:36:01] <rtyler> heh, they are here to help :) [06:36:14] <kohsuke> I guess the world isn't full of people like Ted [06:38:34] *** natacado has quit IRC [06:40:46] *** jenkins-admin has joined #jenkins [06:42:20] *** jonath2002_ has quit IRC [06:42:30] *** jfelchner has quit IRC [06:44:50] *** akostadinov has joined #jenkins [06:48:24] <rtyler> kohsuke: you've got mail :) [06:48:35] <rtyler> hopefully something to brighten the end of your day :) [06:49:42] *** recampbell has quit IRC [07:00:49] *** jieryn-w has quit IRC [07:14:29] *** natacado has joined #jenkins [07:21:34] *** noahcampbell has quit IRC [07:39:12] *** d2m has joined #jenkins [07:44:13] *** simonetripodi has joined #jenkins [07:45:55] *** natacado has quit IRC [07:46:50] *** thkoch has joined #jenkins [07:51:19] *** aheritier has quit IRC [07:54:07] *** aheritier has joined #jenkins [07:59:46] *** awb has quit IRC [08:03:48] *** joewilliams is now known as joewilliams_away [08:19:48] *** Aetzel has joined #jenkins [08:26:21] *** cliffano has quit IRC [08:29:18] *** lacostej has quit IRC [08:32:16] *** Lewisham has quit IRC [08:34:29] *** skataria has joined #jenkins [08:41:27] *** joshsmith has joined #jenkins [08:43:07] *** Aetzel has quit IRC [08:47:02] *** joshsmith has quit IRC [08:47:08] *** joshsmith has joined #jenkins [08:47:27] *** Aetzel has joined #jenkins [08:51:22] *** skataria1 has joined #jenkins [08:51:38] *** skataria1 has left #jenkins [08:53:03] *** skataria has quit IRC [08:56:29] *** redsolo has joined #jenkins [08:57:07] *** Martin1982 has joined #jenkins [08:59:58] *** rioch has joined #jenkins [09:00:38] <rioch> I'm moving from hudson to jenkins. Does this mean I need to rename c:\.hudson to c:\.jenkins, or will that happen automatically? [09:00:43] *** patryk has joined #jenkins [09:01:40] *** kenneth_reitz has quit IRC [09:07:39] *** vjuranek has joined #jenkins [09:08:20] *** drulli has joined #jenkins [09:08:21] *** ChanServ sets mode: +v drulli [09:10:07] *** dvaske has joined #jenkins [09:15:22] *** lacostej has joined #jenkins [09:16:24] *** atmos has quit IRC [09:18:15] *** kenneth_reitz has joined #jenkins [09:20:07] *** Weltraumschaf has joined #jenkins [09:27:05] *** cristiano has joined #jenkins [09:28:33] *** _marc` has joined #jenkins [09:33:40] *** olamy has joined #jenkins [09:37:42] *** imeikas has joined #jenkins [09:43:13] <Weltraumschaf> ping jieryn* [09:47:07] <d2m> jenkins 1.396 installed without problems on ubuntu 10.10 - thank you [09:48:53] *** edorian has joined #jenkins [09:49:43] *** benmatselby has joined #jenkins [09:53:12] *** Stubbs has joined #jenkins [09:54:52] <Weltraumschaf> I've wlked thorugh http://bit.ly/h6meVU (github site createn) but on mvn site site:deploy mvn want to do an svn log on https://svn.java.net/.../ my plugin, but my plugin is on github (https://github.com/Weltraumschaf/hudson-darcs). i have no idea where to look now. my java experiences are 6 years ago :( [09:55:04] *** joshsmith has quit IRC [09:57:01] <redsolo> Weltraumschaf: Do you have a scm tag in your pom? Otherwise the Hudson parent might default to the svn. [09:57:44] <Weltraumschaf> no [09:57:56] <Weltraumschaf> ahh, ok. i understand. it looks on good ol sun by default [09:58:25] *** slaboure has joined #jenkins [10:00:48] *** kenneth_reitz has quit IRC [10:02:14] <redsolo> weltraumschaf: a sample of how it could look like https://github.com/jenkinsci/tfs-plugin/blob/master/pom.xml#L28 [10:04:16] <olamy> kohsuke around ? [10:13:41] *** cristiano has quit IRC [10:14:27] <drulli> redsolo: Erik, do you mind if I copy your Simian parser for my dry-plugin? [10:18:57] <redsolo> drulli, no not really... go ahead [10:19:51] <drulli> Ok! [10:23:22] <Weltraumschaf> redsolo: thx [10:29:22] *** calavera has joined #jenkins [10:30:40] *** DamZzzz is now known as DamZ [10:32:47] *** Haloperidol has joined #jenkins [10:34:26] *** Haloperidol has quit IRC [10:38:02] *** dvaske has quit IRC [10:39:18] *** dvaske has joined #jenkins [10:39:33] <Weltraumschaf> works :) [10:40:40] <redsolo> excellent! [10:55:13] <Weltraumschaf> "Embedded error: Error checking out: Unable to commit file. The git-pull command failed. Permission denied (publickey)." [10:55:37] <Weltraumschaf> but i have installed keys properly. mypush/pul in cli works [10:56:04] <Weltraumschaf> i'm on mac os. how do i tell mvn to act as me and use my keys? [10:56:32] <olamy> ~/.ssh ? [10:57:39] <Weltraumschaf> jep. everything proper. a manual git push ... just works [10:57:54] <Weltraumschaf> and i ran mvn as the same user in the same repo [10:59:20] *** ExtraSpice has joined #jenkins [11:05:54] *** dogmatic69 has joined #jenkins [11:09:06] *** DaveH has joined #jenkins [11:13:13] *** benmatselby has quit IRC [11:14:16] <Weltraumschaf> the permissions for the .ssh/id_rsa.pub is rwx-r--r-- but why mvn complains about denied permissions? -e doesnt tell more [11:15:04] *** cliffano has joined #jenkins [11:16:46] *** ChanServ sets mode: +v cliffano [11:18:06] *** mart has joined #jenkins [11:18:54] <mart> Hi, where is the pom for org.jenkins-ci:jenkins:1.1.0 ? [11:19:16] <mart> (as in, the parent pom for the top level project in git.) [11:23:28] *** nd___ has joined #jenkins [11:27:05] *** nd__ has quit IRC [11:31:25] *** flurp has joined #jenkins [11:32:55] *** DamZ is now known as drupalacreme [11:46:49] *** d2m has quit IRC [11:49:32] *** d2m has joined #jenkins [11:51:10] *** flurp has quit IRC [11:53:39] *** slaboure has quit IRC [12:05:22] *** slaboure has joined #jenkins [12:07:42] *** Stubbs_ has joined #jenkins [12:08:29] * olamy will start some lobbying at asf to replace hudson.apache.org with jenkins.apache.org :-) [12:11:59] *** Stubbs has quit IRC [12:11:59] *** Stubbs_ is now known as Stubbs [12:12:49] <mart> olamy: do you have the revision number you built from? I can't get master to build. [12:15:56] *** Stubbs_ has joined #jenkins [12:15:56] *** Stubbs has quit IRC [12:15:56] *** Stubbs_ is now known as Stubbs [12:16:24] *** flurp has joined #jenkins [12:17:21] *** Stubbs_ has joined #jenkins [12:17:21] *** Stubbs has quit IRC [12:17:21] *** Stubbs_ is now known as Stubbs [12:17:22] <olamy> mart build what ? jenkins ? [12:18:04] <flurp> ? [12:18:09] <flurp> hudson has died sadly [12:18:38] <mart> olamy: sure, sonar.apache.org/jenkins [12:18:41] *** Stubbs has quit IRC [12:19:00] *** Stubbs has joined #jenkins [12:19:23] <olamy> :-) I have just upgraded to the first jenkins release [12:20:06] <mart> yesterday it was a snapshot. I can't keep up with you, man. :) [12:20:08] *** Stubbs has quit IRC [12:20:24] <olamy> hehe [12:20:29] *** Stubbs has joined #jenkins [12:21:31] <flurp> oh its out [12:21:32] <flurp> cool [12:21:39] <flurp> bye bye oracle [12:21:49] *** cristiano has joined #jenkins [12:23:22] *** Stubbs has quit IRC [12:25:11] *** Stubbs has joined #jenkins [12:26:41] *** Stubbs_ has joined #jenkins [12:26:41] *** Stubbs has quit IRC [12:26:42] *** Stubbs_ is now known as Stubbs [12:28:16] *** Stubbs_ has joined #jenkins [12:28:16] *** Stubbs has quit IRC [12:28:16] *** Stubbs_ is now known as Stubbs [12:28:37] <mart> cool. jenkins debian package 'just works' installing on a system that had the hudson package. [12:29:00] <patryk> yeah, just upgraded 5 minutes ago :-) [12:29:14] *** d2m has quit IRC [12:29:50] *** Stubbs_ has joined #jenkins [12:29:50] *** Stubbs has quit IRC [12:29:50] *** Stubbs_ is now known as Stubbs [12:30:35] <mart> server_name hudson hudson.*; locaton / { rewrite ^(.*)$ http://jenkins$1 permanent; } # mwa-ha-ha [12:31:02] <flurp> lol [12:31:06] *** Stubbs has quit IRC [12:31:13] *** Stubbs has joined #jenkins [12:32:23] *** Stubbs_ has joined #jenkins [12:32:23] *** Stubbs has quit IRC [12:32:24] *** Stubbs_ is now known as Stubbs [12:33:28] *** Stubbs_ has joined #jenkins [12:33:28] *** Stubbs has quit IRC [12:33:29] *** Stubbs_ is now known as Stubbs [12:35:06] *** Stubbs_ has joined #jenkins [12:35:07] *** Stubbs has quit IRC [12:35:07] *** Stubbs_ is now known as Stubbs [12:35:51] *** drupalacreme is now known as DamZ [12:36:16] <Aetzel> I'm planning to replace hudson by jenkins tomorrow. do I have to do something manually (rename directories, ...) or does jenkins all the things automatically? I use hudson on a tomcat at ubuntu. [12:36:43] *** Stubbs_ has joined #jenkins [12:36:43] *** Stubbs has quit IRC [12:36:44] *** Stubbs_ is now known as Stubbs [12:37:09] <olamy> Aetzel change HUDSON_HOME env var [12:37:14] <olamy> to JENKINS_HOME [12:37:32] <olamy> and that's it :-) [12:37:44] <Weltraumschaf> http://wiki.jenkins-ci.org/display/JENKINS/Upgrading+from+Hudson+to+Jenkins [12:38:00] <flurp> i will sort ours out soon [12:38:00] *** Stubbs has quit IRC [12:38:16] *** Stubbs has joined #jenkins [12:40:55] <Aetzel> thank you. on the page is written jenkin recognizes HUDSON_HOME - this means he recognizes both environment variables? [12:41:29] <patryk> i faced a problem while upgrading, permissions on one file in the home-dir got messed up - but thats all :-) [12:44:13] *** cliffano has quit IRC [12:45:18] *** d2m has joined #jenkins [12:47:29] <olamy> Aetzel sure for backward comp HUDSON_HOME works [12:47:36] <olamy> but you can rename :-) [12:50:05] <Aetzel> should i face problems, if I rename my directory hudson_home to jenkins_home and set my env-var JENKINS_HOME to the new directory name? [12:50:51] <olamy> yup [12:51:18] <olamy> here I have done : ln -s jenkins_home hudson_home [12:51:30] <olamy> too prevent possible issues [12:54:23] *** Haloperidol has joined #jenkins [12:57:46] *** flurp has quit IRC [12:58:29] <lacostej> Aetzel: note that there's a bug if you start jenkins using java -jar jenkins.war: it won't pick up the .jenkins. So if you moved your .hudson directory into a .jenkins, it will be ignored. I've fixed it but it's not merged. [12:58:59] <Aetzel> ok [12:59:06] *** slaboure has quit IRC [13:01:01] <olamy> does your patch take about renaming ~/.hudson to ~/.jenkins ? [13:09:03] *** slaboure has joined #jenkins [13:24:26] *** Stubbs has quit IRC [13:25:17] *** recampbell has joined #jenkins [13:25:42] *** ExtraSpice has quit IRC [13:27:30] *** aleksas has joined #jenkins [13:27:38] <aleksas> hello guys [13:27:39] *** Stubbs has joined #jenkins [13:27:58] <aleksas> i'm having problems logging in to jenkins JIRA [13:28:41] <aleksas> or wiki... resetting pasword emails me a new password, but it doesn't work [13:34:03] <lacostej> olamy: no, it just uses .jenkins if it is present. The same way kohsuke intended to do it right now, but it wasn't working [13:37:51] <olamy> ah IMHO we could rename (if exits) sure my POV [13:43:09] *** jieryn-w has joined #jenkins [13:43:09] *** jieryn-w has joined #jenkins [13:43:09] *** ChanServ sets mode: +v jieryn-w [13:43:31] *** Gazoo has joined #jenkins [13:47:08] <aleksas> can anybody help with logging into Jenkins JIRA problem? [13:47:21] <jieryn-w> i can sanity check you [13:53:58] <lacostej> olamy: and then hudson implements renaming from .jenkins and the war goes on ;) [13:54:44] <lacostej> hei yesterday I set up a reproduceable test case for HUDSON-7745, and when I wanted to fix the problem today, I found out that kohsuke had accidentaly fixed the problem. Doh [13:55:07] <lacostej> hehe [13:55:15] <lacostej> I will comment on HUDSON-7745 [13:59:14] <lacostej> now: JENKINS-7836 has someone on this channel encountered this issue ? [13:59:26] <Weltraumschaf> Hi jieryn-w [14:01:40] <jieryn-w> heya [14:02:17] <Weltraumschaf> i'm struggling with github :( [14:02:21] <jieryn-w> i checked your project does have the right branch defined, but so far no page deployed [14:04:17] *** flurp has joined #jenkins [14:05:00] <Weltraumschaf> "Embedded error: Error checking out: Unable to commit file. The git-pull command failed. ERROR: weltraumschaf/hudson-darcs.git doesn't exist. Did you enter it correctly?" [14:05:17] <Weltraumschaf> i have absolute no more ideas what to try [14:06:00] <Weltraumschaf> last pom https://github.com/Weltraumschaf/hudson-darcs/blob/master/pom.xml [14:06:00] <jieryn-w> what happens when you ssh git at github dot com [14:06:01] <jieryn-w> ? [14:06:02] *** thkoch has quit IRC [14:06:07] <jieryn-w> yes, i'm building your project now [14:06:24] <Weltraumschaf> "PTY allocation request failed on channel 0 [14:06:24] <Weltraumschaf> Hi Weltraumschaf! You've successfully authenticated, but GitHub does not provide shell access. [14:06:24] <Weltraumschaf> Connection to github.com closed." [14:06:32] <Weltraumschaf> i can push and pull without any problems [14:06:41] <jieryn-w> k [14:06:47] <Weltraumschaf> the .m2/settings.xml i extended as you described [14:08:01] <jieryn-w> wgetpaste -X -c 'mvn help:effective-settings' [14:08:14] <jieryn-w> or similar :) [14:08:25] *** thkoch has joined #jenkins [14:10:56] <Weltraumschaf> http://pastebin.de/14501 [14:11:32] <jieryn-w> looks good [14:12:04] <Weltraumschaf> mac os problem? [14:12:18] <jieryn-w> i am not familiar at all with that platorm [14:12:36] <jieryn-w> wgetpaste -X -c 'mvn -version' [14:12:44] <Weltraumschaf> usually there are less problems than with windows [14:13:33] <Weltraumschaf> http://pastebin.de/14502 [14:13:52] <jieryn-w> ok, 2.2.1 is what i used to gererate the site [14:14:12] <jieryn-w> i wonder if it is a case thing [14:14:34] <jieryn-w> https://github.com/weltraumschaf/hudson-darcs.git 404 [14:14:49] <lacostej> hei guys, I might have a fix that fixes the top voted issue. Is there a place to upload that build ? Or maybe can someone generate one for me ? Thanks [14:15:15] <Weltraumschaf> with W also 404 [14:15:25] <Weltraumschaf> is there a typo i do not see? [14:15:32] <jieryn-w> drat [14:18:13] <jieryn-w> ok, i just went over your pom.xml config character by character against my working one [14:18:17] <jieryn-w> it looks right [14:18:43] *** sanitycheck has joined #jenkins [14:18:51] <Weltraumschaf> its not a case problem, the problem is that mvn tries https://github.com/weltraumschaf/hudson-darcs.git, but that does not work. there is either https://github.com/weltraumschaf/hudson-darcs/ (the project site) or git at github dot com:Weltraumschaf/hudson-darcs.git (ssh) [14:19:12] <jieryn-w> nod [14:20:21] <Weltraumschaf> settings.xml in .m2: http://pastebin.de/14503 [14:20:25] <Weltraumschaf> is this right? [14:21:07] <Weltraumschaf> i try mvn with -X [14:21:22] <jieryn-w> yes [14:21:33] *** Stubbs has quit IRC [14:22:44] <jieryn-w> i found it [14:22:46] <jieryn-w> :-) [14:23:00] <jieryn-w> distributionManagement.site.url is worng [14:23:01] <jieryn-w> wrong [14:23:06] <jieryn-w> <url>gitsite:git at github dot com/weltraumschaf/hudson-darcs.git</url> should be <url>gitsite:git at github dot com/weltraumschaf/hudson-darcs</url> [14:23:16] *** elpargo_ has joined #jenkins [14:23:25] *** elpargo has quit IRC [14:23:25] *** elpargo_ is now known as elpargo [14:23:31] <jieryn-w> Weltraumschaf: ^^ [14:25:04] *** flurp has quit IRC [14:25:06] <Weltraumschaf> wuaahhh!!! [14:25:13] <Weltraumschaf> thx a lot! [14:25:24] <jieryn-w> working? [14:25:27] <Weltraumschaf> when i will met you somewhere i buy you a beer :) [14:25:31] <Weltraumschaf> mompl [14:25:39] <jieryn-w> german beer? nice one :) [14:25:45] <jieryn-w> ok, happy coding [14:25:48] <Weltraumschaf> yes, of course :) [14:28:57] *** Stubbs has joined #jenkins [14:29:09] *** DamZ is now known as DamZzzz [14:29:35] *** flurp has joined #jenkins [14:31:34] <jieryn-w> this is a test of the ircbot, show me jenkins-1 please [14:31:54] <jieryn-w> jenkins-admin: bug 1000 [14:31:55] <jenkins-admin> I didn't understand the command [14:32:06] *** neil__ has joined #jenkins [14:32:22] <jieryn-w> bug 1000 [14:33:36] <drulli> Do you mean JENKINS-1000? [14:33:48] <drulli> or HUDSON-1000? [14:34:08] <drulli> hmm, the admin is broken... [14:34:31] *** flurp has quit IRC [14:35:02] <jieryn-w> jenkins-admin: version [14:35:52] <jieryn-w> yah, he's fragged :) [14:36:13] *** kstreith has joined #jenkins [14:37:54] <Weltraumschaf> still does not work http://pastebin.de/14506 [14:38:01] *** tobias has joined #jenkins [14:38:27] <Weltraumschaf> why does it ssh://github... and not git://? [14:40:28] *** myusuf3_ has quit IRC [14:41:04] <jieryn-w> is your updated pom pushed? [14:41:16] <Weltraumschaf> yes [14:42:01] <jieryn-w> https://github.com/Weltraumschaf/hudson-darcs/blob/master/pom.xml#L42 [14:42:06] <jieryn-w> why is the url commented out? [14:43:10] <Weltraumschaf> because someone here gives me https://github.com/jenkinsci/tfs-plugin/blob/master/pom.xml#L28 as hint erlear. and there are neither url nor tag. so i tried this [14:43:50] <jieryn-w> ok, please remove the tag=head, and put the url back in please? [14:44:10] <Weltraumschaf> mvn runs [14:44:15] <jieryn-w> if this doesn't work, i have no idea -- because my working pom and your failing pom are virtually identical [14:44:58] <Weltraumschaf> is your pom on github? [14:45:15] <jieryn-w> https://github.com/jenkinsci/dumpinfo-buildwrapper-plugin [14:45:55] <jieryn-w> deployed http://jenkinsci.github.com/dumpinfo-buildwrapper-plugin/ [14:47:43] <Weltraumschaf> wowowow [14:47:53] <Weltraumschaf> it looks good [14:48:09] <Weltraumschaf> a lot git add && git status INFOs [14:48:33] <Weltraumschaf> hmmm, the missing url tag AND uppercase W of my nickname :/ [14:48:48] <Weltraumschaf> it looks like that ssh is case sensitive but the web not [14:50:27] <jieryn-w> ahh!!! [14:50:33] *** lacostej has quit IRC [14:51:04] <jieryn-w> if you get a chance, would you please update http://wiki.jenkins-ci.org/display/JENKINS/Site+Creation+and+Deployment with your pitfalls ? [14:51:14] <Weltraumschaf> http://weltraumschaf.github.com/hudson-darcs/ hard work [14:51:19] <Weltraumschaf> yes of course! [14:51:23] <jieryn-w> yaay! [14:51:52] <Weltraumschaf> what about my first issue i twittered about the checkstyle version? [14:53:00] *** esteele has joined #jenkins [14:53:03] <Weltraumschaf> sry, Does not build w/ findbugs-maven-plugin 2.3.2 but w/ 2.3. [14:53:08] <Weltraumschaf> 1 [14:53:16] <jieryn-w> i think because there is a -SNAPSHOT issue [14:53:23] <Weltraumschaf> ah, ok [14:54:16] <jieryn-w> ok, i see you are using <findbugs-maven-plugin.version>2.3.1</findbugs-maven-plugin.version> so that shouldn't be an issue [14:55:04] <jieryn-w> the checkstyle 2.6 vs 5.0 thing sounds like a strangeness between m-checkstyle-p and the actual checkstyle lib [14:56:10] <Weltraumschaf> no, sry, ignore checkstyle. that was my fault. i dont know why, but the checkstyle dir in .m2/repositories belonged to user root. so mvn can not install it [14:56:42] <Weltraumschaf> but with findbugs 2.3.2 it will not work and on the glassfish maven repo site there is no 2.3.2.jar [14:56:49] <Weltraumschaf> so i changed to 2.3.1 [14:57:16] <jieryn-w> well, 2.3.2 is not yet released [14:57:26] <jieryn-w> i had used 2.3.2-SNAPSHOT to work around a maven 3 bug [14:57:39] <jieryn-w> err, a bug triggered in m-findbugs-p when using m3 [14:58:04] <jieryn-w> if you don't use m3, you're fine :) [14:58:05] <Weltraumschaf> so i can change it in the wiki to 2.3.1? [14:58:20] <Weltraumschaf> ah, ok, then we should mention that issue [14:58:22] <jieryn-w> that might be best, while you're there [14:58:31] <jieryn-w> just drop it down to 2.3.1 .. sorry for that [14:58:47] <Weltraumschaf> no problem! i learned a lot of last night :) [14:58:50] <jieryn-w> i think the next thing to do is to get some sort of plugin-report going for jenkins plugins [14:59:00] <jieryn-w> like the way there is a mojo report [14:59:37] <Weltraumschaf> i dont know mojo. i did nothing with java the last 6 years ;) lot of new stuff to learn [15:01:33] <olamy> jieryn-w wdym exactly with "some sort of plugin-report" ? [15:01:43] * Weltraumschaf waits for registring mail [15:02:10] <jieryn-w> i dunno [15:02:15] <olamy> :-) [15:02:16] <jieryn-w> extension reporting [15:02:27] <jieryn-w> localization support [15:02:38] <olamy> and see the result in jenkins with a link ? [15:02:59] <jieryn-w> not sure [15:03:09] <jieryn-w> but the confluence jenkins-plugin-info macro could be updated [15:03:21] <jieryn-w> to link to it [15:03:43] <jieryn-w> i mostly wanted site deployment so that i could get visual on checkstyle/findbugs/pmd [15:03:58] *** drulli has quit IRC [15:04:11] <olamy> ah yes I see [15:04:31] <olamy> could be nice to "intercept" better maven report plugin [15:04:49] * olamy something more in my TODO list :-) [15:05:03] <jieryn-w> do you use hpi:run, btw ? [15:05:15] <jieryn-w> it won't work with m3 ... [15:05:28] <olamy> ? [15:05:46] <olamy> I remember it depends on core version you depend [15:05:55] <jieryn-w> oh hm [15:06:13] <olamy> which core version are u using ? [15:08:08] *** kenneth_reitz has joined #jenkins [15:09:09] <jieryn-w> i have no idea :) [15:09:13] <jieryn-w> i dep on 1.393 [15:09:30] <olamy> and mvn hpi:run sucks ? [15:09:53] <jieryn-w> let me double check it, but yeah [15:10:18] <olamy> oh bad --( [15:10:44] <Weltraumschaf> does the registration on wiki.jenkins-ci.org work? still waiting for confirmation mail [15:11:47] <jieryn-w> http://paste.pocoo.org/show/331609/ [15:12:11] <jieryn-w> Weltraumschaf: presume you checked spam folder? some of our infra needs a kick from time to time.. [15:12:18] <jieryn-w> Weltraumschaf: sorry :-/ [15:13:13] <jieryn-w> olamy: it's too bad too because the m3 support makes hudson really fly :) just can not build m2/m3 project with an m3 hpi:run invoke;; m2.2.1 hpi:run works fine [15:13:16] <jieryn-w> for exact same job [15:13:36] <olamy> doh [15:13:38] <jieryn-w> job is here: http://paste.pocoo.org/show/331612/ [15:14:15] <olamy> add a jira entry and assign it to me [15:14:23] *** Aetzel has quit IRC [15:14:35] *** Aetzel has joined #jenkins [15:14:39] *** esteele|away has quit IRC [15:14:47] <olamy> I will have a look later (no spare time ATM but it's class loader isolation issue) [15:15:00] <jieryn-w> http://issues.jenkins-ci.org/browse/JENKINS-8511 [15:15:09] <jieryn-w> you are assigned :) [15:15:11] <Weltraumschaf> jieryn-w: nothing in spam folder [15:15:28] <olamy> ouch :-) [15:15:39] <olamy> no same problem as the one with hpi:run ? [15:15:41] <jieryn-w> Weltraumschaf: ok - apologies then, i'll make the updates if you will please send a note to the mailing lists? [15:15:57] <jieryn-w> pardon? [15:16:15] *** DamZzzz is now known as DamZ [15:16:19] <olamy> I remember testing it (see my comment ) [15:16:21] <Weltraumschaf> no problem. imaybe mail need some time. i did some notes. [15:16:35] <Weltraumschaf> where do i find the actual jenkins developer list? [15:17:56] <olamy> jieryn-w sorry I have to leave now some job stuffs to do [15:18:03] <olamy> see you later [15:18:08] <jieryn-w> Weltraumschaf: http://jenkins-ci.org/content/mailing-lists [15:18:11] <jieryn-w> olamy: good day :) [15:18:20] *** olamy has quit IRC [15:18:22] <Weltraumschaf> thx [15:18:24] *** tobias has quit IRC [15:19:03] <Weltraumschaf> mail arived :) [15:19:23] * Weltraumschaf is so impatient [15:20:05] <jieryn-w> nah, that is def. a long time [15:20:16] <jieryn-w> > 1 minute is too long for an automated email [15:20:39] <jieryn-w> ok, i added a troubleshooting section and fixed the -SNAPSHOT [15:20:42] <Weltraumschaf> not when the mail is routed over egypt *hrhr* [15:20:48] <jieryn-w> double check with your real-world experience please? [15:22:14] <mwalling> are you graylisting? [15:22:54] <Weltraumschaf> i think so. [15:23:06] <Weltraumschaf> i pay for amail service. i do not care the details. [15:25:25] *** recampbell has quit IRC [15:27:07] *** jonath2002_ has joined #jenkins [15:27:32] *** elliot has joined #jenkins [15:33:37] *** tobias has joined #jenkins [15:34:07] *** aleksas has quit IRC [15:35:20] <Weltraumschaf> updated the trouble shooting section [15:35:58] *** drulli has joined #jenkins [15:35:58] *** ChanServ sets mode: +v drulli [15:36:22] *** DamZ is now known as DamZzzz [15:36:33] <jieryn-w> :-) [15:37:13] <Weltraumschaf> back to my normal work :/ [15:37:24] <jieryn-w> ok, have a good day [15:37:38] <Weltraumschaf> thx. you, too [15:39:12] <Weltraumschaf> and thx for your help, when you visit stuttgart you will got a beer [15:39:20] <Weltraumschaf> get [15:44:52] *** abayer has quit IRC [15:49:48] *** Gazoo has quit IRC [15:51:10] * jieryn-w grins - thx! [15:54:24] *** kenneth_reitz has quit IRC [16:01:28] *** recampbell has joined #jenkins [16:06:16] *** dotsev has joined #jenkins [16:07:11] *** Haloperidol has quit IRC [16:10:23] *** dogmatic69 has quit IRC [16:12:02] *** dvaske has quit IRC [16:14:30] *** dogmatic69 has joined #jenkins [16:15:29] *** Haloperidol has joined #jenkins [16:19:06] *** nano- has joined #jenkins [16:19:44] <nano-> Is it possible to change hudson build number to for example `git describe` ? (at least repr in the ui) [16:22:14] *** cowboyd has joined #jenkins [16:25:08] *** dogmatic69 has quit IRC [16:31:47] *** joewilliams_away is now known as joewilliams [16:38:44] *** Aetzel has quit IRC [16:39:55] *** olamy has joined #jenkins [16:42:45] *** abayer has joined #jenkins [16:42:46] *** ChanServ sets mode: +o abayer [16:44:15] *** vjuranek has quit IRC [16:51:44] *** dotsev has quit IRC [16:53:24] *** elpargo has quit IRC [16:56:16] *** elpargo has joined #jenkins [17:02:35] *** DamZzzz is now known as DamZ [17:03:42] <_W_> am I supposed to get an empty list on the "Available" tab under the Plugin Manager? [17:03:53] <abayer> Probably not? =) [17:04:01] <abayer> This is with Jenkins 1.396? [17:04:14] <_W_> yep, and the Update Site is listed as http://updates.jenkins-ci.org/update-center.json [17:04:39] <abayer> What's the last updated time? [17:04:39] <_W_> oh wait, domain change, of course, need to whitelist for javascript [17:04:46] <abayer> Aaaah, yeah. [17:04:46] <_W_> sorry, all my fault [17:04:51] <abayer> no worries. [17:06:50] *** dogmatic69 has joined #jenkins [17:07:44] *** Stubbs has quit IRC [17:07:47] *** esteele is now known as esteele|away [17:08:51] <jieryn-w> abayer: i killed the bot somehow [17:08:59] <jieryn-w> do you have a way of checking his stderr ? [17:09:29] <abayer> Nope. It's running on a box of Kohsuke's somewhere. [17:09:43] *** sanitycheck has left #jenkins [17:09:45] <jieryn-w> drat [17:10:58] <jieryn-w> another down side is that it relies on deps not in any repo .. going to try to find and build them myself [17:11:06] <jieryn-w> ..as i can not test the changes i made :-/ [17:11:09] *** statlor has joined #jenkins [17:11:09] *** ChanServ sets mode: +v statlor [17:11:13] <abayer> heh. [17:11:22] <abayer> argh, Adium slows down after a while. brb. [17:11:23] *** abayer has quit IRC [17:11:45] *** abayer has joined #jenkins [17:11:46] *** ChanServ sets mode: +o abayer [17:12:50] <statlor> taking a few minutes to get caught up on the J... [17:20:03] *** Stubbs has joined #jenkins [17:26:25] *** noahcampbell has joined #jenkins [17:33:42] *** olamy has quit IRC [17:33:42] *** jonath2002_ has quit IRC [17:33:42] *** jonath2002 has quit IRC [17:33:42] *** lukem has quit IRC [17:34:12] *** jenkinsci_builds has quit IRC [17:34:58] *** mconigliaro has joined #jenkins [17:34:59] *** jenkinsci_builds has joined #jenkins [17:35:57] *** Martin1982 has quit IRC [17:37:07] <_W_> I was kind of hoping the IRC plugin would start working with a fresh install, but no luck :/ [17:37:52] *** d2m has quit IRC [17:37:54] *** patryk has quit IRC [17:38:47] *** dhackner has joined #jenkins [17:41:39] *** Stubbs has quit IRC [17:42:37] *** esteele|away is now known as esteele [17:43:53] *** recampbell has quit IRC [17:44:33] *** recampbell has joined #jenkins [17:47:14] *** Heimidal has joined #jenkins [17:49:28] <dhackner> Is upgrading to Jenkins as easy as doing the yum update? That will change over the executables etc.? [17:49:36] *** calavera has quit IRC [17:50:37] *** Weltraumschaf has quit IRC [17:52:51] <abayer> dhackner: Should be, yeah. [17:56:46] <dhackner> lets see. Got the new rpm, swapped my env var to JENKINS_HOME. [17:56:54] <dhackner> The images on the page arent appearing [17:56:59] <dhackner> missing lots of icons [17:58:19] <jieryn-w> clear cache? [18:00:04] <dhackner> ah, I don't think I shut Hudson down first =-) [18:02:02] <jieryn-w> i've added things to the git commit via git add, but how do i see a diff against what will be committed and HEAD ? [18:02:07] <jieryn-w> git diff doesn't do it [18:02:14] <ccutrer> git diff --cached [18:02:19] <jieryn-w> nice [18:06:50] <dhackner> do Groovy commands still use hudson.model.Hudson? [18:06:55] <dhackner> or jenkins.model.Jenkins [18:07:06] <abayer> Yup. No changes to package or class names yet. [18:08:48] *** jonath2002 has joined #jenkins [18:09:31] <dhackner> is it sufficient to just rename the /var/hudson FS root to /var/jenkins, or do I want it to recreate itself from scratch [18:10:53] <jieryn-w> did jenkins-1.396 change GAV? [18:11:51] *** meonkeys has joined #jenkins [18:12:19] *** simonetripodi has quit IRC [18:13:08] <kohsuke> Yes it did. I should document that, too [18:14:14] * rtyler yawns [18:15:26] <rtyler> wow, woke up to something like 110 items in my #jenkinsci twitter RSS feed [18:20:41] *** retornam has joined #jenkins [18:22:39] *** kenneth_reitz has joined #jenkins [18:23:43] <kenneth_reitz> jenkins isn't a fork of hudson, correct? [18:23:46] <kenneth_reitz> It's a full rename. [18:23:56] <kenneth_reitz> yes? [18:26:18] <abayer> Correct. [18:26:18] <jieryn-w> if anything, the oracle hudson is the fork [18:26:40] *** Stubbs has joined #jenkins [18:27:55] <kenneth_reitz> so they're going to continue development on theirs? [18:28:00] <rtyler> apparently [18:28:04] *** mindless1 has joined #jenkins [18:28:04] <kenneth_reitz> that's crazy [18:28:11] <abayer> PRetty much. =) [18:28:29] <rtyler> they don't want to partake in any of our reindeer games [18:28:37] *** mindless1 is now known as mindless [18:28:43] *** mindless has joined #jenkins [18:28:43] *** ChanServ sets mode: +o mindless [18:28:54] <kenneth_reitz> We'll definitely have to discuss that tonight on the show [18:29:17] <rtyler> they were offered a seat on the interim board, and declined [18:29:57] *** amitev has quit IRC [18:30:34] <meonkeys> abayer: re HUDSON-7154 [18:30:37] <meonkeys> thank you! [18:30:52] * kenneth_reitz is lunching [18:32:00] <jieryn-w> heya mindless :) the hudson-plugin-info needs updating.. a few things point to hudson-ci still, and changes point to old github org [18:32:19] <rtyler> kohsuke: you and abayer are skying in right? [18:32:19] <mindless> thx, on it [18:32:33] <rtyler> I can probably jump on skype if you need a laugh track or something, otherwise I don't think I'm necessary [18:32:47] <kohsuke> That's right, it's today. [18:32:50] <kohsuke> OK. [18:32:50] <rtyler> heh [18:32:58] <rtyler> that's why kenneth_reitz is asking questions [18:33:46] <mwalling> kenneth_reitz: publish this one quick, mkay? [18:33:50] <rtyler> hah [18:33:53] <mwalling> i want teh laufs [18:34:06] <rtyler> laflaflaflaf [18:34:24] <kenneth_reitz> hahaha [18:34:32] <kenneth_reitz> We'll see what we can do :) [18:34:34] <rtyler> mwalling: better watch yourself, we'll tell Ted challenging his authoritay was all your idea [18:35:02] <mwalling> rtyler: whats he going to do? tell $Employer to f off and take their business elsewhere? [18:35:27] <rtyler> I've seen him say crazier things :) [18:35:35] <jieryn-w> i talked to my gf that is a lawyer, she said (basically) that ORCL is on crack if they think their trademark extends to an icon provided by MSFT [18:35:49] <rtyler> jieryn-w: stop insulting his team [18:35:54] * rtyler chortles [18:35:55] <kohsuke> :-) [18:35:55] <mindless> ;-) [18:36:06] <kenneth_reitz> afk [18:36:08] <jieryn-w> heh [18:36:09] *** kenneth_reitz has quit IRC [18:36:16] *** dogmatic69 has quit IRC [18:37:06] <jieryn-w> and that they would likely never even press the point from their legal team, just their PR team, because a lawyer would have to sign any complaint that the they believe the issue has merit and is not a waste of judicial resources [18:37:12] <rtyler> kohsuke: after today, I'm going to grep the mirrorbrain logs, and write a post thanking OSUOSL for their support, and highlighting how many jenkins downloads we did in the first day [18:37:17] <jieryn-w> which it clearly would be [18:37:19] <rtyler> kohsuke: would that be cool withy you [18:37:33] <kohsuke> sure thing [18:37:54] <kohsuke> I wonder if you can mention something about Rackspace that their mirrors will be coming soon, and that we love them too? [18:37:57] <rtyler> kohsuke: also, go give them some money :) http://osuosl.org/donate [18:38:08] <kohsuke> Yes, already doing it [18:38:10] <rtyler> kohsuke: that'll be a separate post I think, once they're online [18:38:20] <kohsuke> OK. I defer to you. [18:38:36] <rtyler> I've got in my queue: write about first day downloads, highlight seminars, rackspace we lubs you [18:39:02] <rtyler> I'd like to get jenkins building on that rackspace node before I confess any undying love for them ;) [18:39:03] <kohsuke> I need to ping them about the logo [18:39:07] * rtyler nods [18:39:13] <kohsuke> Yeah, that's a good milestone [18:39:30] <rtyler> I think we can agree that OSUOSL has more than earned some love :P [18:40:37] <kohsuke> Definitely [18:41:10] <mindless> git question.. I did git add --all , but I want to omit 1 of the files from this commit [18:41:30] <rtyler> according to my rough calculations, so far today we've pushed ~17GB of jenkins.war through the OSUOSL mirrors [18:41:37] <Tartarus> mindless, follow up with a git reset HEAD that-1-file [18:41:38] <Tartarus> ? [18:41:39] <mindless> guess I should have used git reset for this, but i did git rm [18:41:47] <mindless> as rm seems opposite of add [18:41:48] <rtyler> git rm ain't right :D [18:42:00] <mindless> how do i un-rm? [18:42:11] <Tartarus> git reset will still save you [18:42:15] <Tartarus> do a git status [18:42:17] <Tartarus> and see what it says [18:43:00] <rtyler> 6GB of rpms today too [18:43:02] * rtyler cheers [18:43:04] <mindless> ok, git reset HEAD {file} got it out of the "to be committed" part, now I think git checkout can restore the file [18:43:10] <rtyler> hoorah mirrorbrain [18:43:33] <dhackner> Are the tool auto installers working with the new paths? [18:43:34] *** vjuranek has joined #jenkins [18:43:45] <dhackner> My JDK doesn't appear to be installing properly anymore [18:44:07] <kohsuke> Error messages, etc? [18:44:47] <dhackner> JDK installation skipped: Unknown CPU name: mac os x [18:44:58] <dhackner> and the Jenkins_JDK is empty [18:45:02] <kohsuke> It's not supported on Mac, unfortunately [18:45:04] <dhackner> (the folder that is) [18:45:07] *** Stubbs has quit IRC [18:45:12] <kohsuke> And it never was [18:45:17] <dhackner> Really? [18:45:20] <dhackner> weird [18:45:33] <kohsuke> Yeah. Apple JDK doesn't follow the same release cycles nor numbers as Sun JDKs [18:45:33] <dhackner> wonder why this problem just arose now [18:45:40] <dhackner> oh yea thats right [18:45:45] *** Stubbs has joined #jenkins [18:45:52] <dhackner> strange, wonder where this is coming from [18:46:08] <kohsuke> So you better need to have JAVA_HOME in your environment variable of that slave [18:47:34] *** recampbell has quit IRC [18:50:30] <Tartarus> JaMa|Wrk, can you pastebin || email me your local.conf? [18:50:31] <Tartarus> ga [18:52:05] <rtyler> kohsuke: some folks on twitter were complaining about the "upgrade from Hudson?" not being prominent (such that they didn't notice) [18:52:13] <rtyler> I emboldended a bit, hope you don't mind [18:52:20] <kohsuke> not at all. thanks [18:53:11] <rtyler> this mirror network is a life saver, jeebus [18:53:17] <rtyler> I can't imagine pushing this all through rackspace and contegix [18:55:15] <rtyler> kohsuke: how long do you think we should continue to mirror Hudson releases? [18:55:33] *** slaboure has quit IRC [18:55:55] <kohsuke> Don't know. [18:56:00] <rtyler> me neither, heh [18:56:00] <kohsuke> Is it to save disk space? [18:56:22] <rtyler> well, asking new mirrors to mirror 7.5GB of content right now, as opposed to maybe a few hundred megs, is a big difference :P [18:56:44] <rtyler> woohoo! looks like xmission updated their mirror [18:56:56] <rtyler> http://mirrors.xmission.com/jenkins/ [18:56:58] <jieryn-w> i pushed some more rename fixes to https://github.com/jenkinsci/pom/commit/13849681b2f9cddbb277b5a0cc8895a72039c236 [18:57:00] * rtyler cheers [18:57:18] <jieryn-w> i think we probably wanna release it and pick it up before 1.397 [18:57:25] <kohsuke> Got it [18:57:37] <abayer> kohsuke: could you take a look at https://groups.google.com/forum/#!topic/jenkinsci-users/d3YbR08f4ho? [18:57:54] <kohsuke> jieryn-w: page not loading for me [18:57:56] <mindless> kohsuke/abayer: I don't think hudson/backend/hudson-plugin-info-plugin has a github repo yet, right? [18:58:14] <kohsuke> mindless: let me check [18:58:16] <mindless> how can I go about making one? or should it live in a repo grouped with some other stuff? [18:58:27] *** _marc` has quit IRC [18:58:30] <kohsuke> I really need to create a little script that generates github repository map [18:58:33] <abayer> jieryn-w: that looks good to me. [18:58:35] <kohsuke> it's not very discoverable in GitHub [18:58:41] <kohsuke> jieryn-w: want to do a release by yourself? [18:59:05] <mindless> I emailed a little script to list all non-plugin repos the other day [19:00:01] <jieryn-w> lemme try :) [19:01:45] <mindless> jieryn-w: looks like the pom lists "jenkins-ja", but that group has not been renamed [19:02:11] <mindless> and it has jenkins-dev and -users instead of jenkinsci-dev, .. [19:03:26] <dhackner> kohsuke: it appears that the JDK issue is due to the upgrade. The config pages for my nodes seem to have reset all "Tool Location" entries. [19:03:28] <dhackner> e.g.: [19:03:32] <jieryn-w> mindless: dang [19:04:01] <mindless> you releasee to quickee [19:04:05] <dhackner> 2 tool locations: Name: ANT Home: /.../... Name: JAVA Home: /.../... [19:04:13] <dhackner> this became Name: ANT Home: /.../... Name: ANT Home: /.../... [19:04:23] <dhackner> so all of the drop downs set themselves to the first thing [19:04:40] <mindless> and just curious, why is the artifactId "jenkins".. would "jenkins-pom" be better? [19:05:04] <dhackner> might have been just due to the process of renaming the tool installers actually [19:05:15] <kohsuke> dhackner: OK, I need to look into it then. Nothing was changed there [19:05:28] <gsson> I'm trying to add cgit support to the git plugin. I've added a CGit.java, and all of a sudden one of the tests starts failing. http://8607b67fc902d4e9.paste.se/ [19:05:36] <dhackner> I bet it is because I renamed my installers from Hudson Java/ANT to Jenkins Java/ANT [19:05:50] <jieryn-w> mindless: agreed, in my defense though the -dev link was broken, i then cloned that bug everywhere :) [19:06:02] <gsson> It's probably a stupid mistake on my behalf, but it's not immediately obvious what it tests or how that affects git browsers [19:06:12] *** DaveH has quit IRC [19:07:33] <jieryn-w> so, is the hudson-ja group going to rename? [19:07:52] <mindless> dunno.. [19:07:59] <mindless> not owned by abayer [19:08:45] <mindless> kohsuke: so where should I make plugin-info-plugin changes? [19:09:22] <kohsuke> let me sync it right now. would that be ok? [19:09:25] <kohsuke> it takes max 15 mins [19:09:33] <mindless> ok [19:09:40] <kohsuke> jieryn-w: they plan on renaming at the end of Feburary after a user meeting [19:11:58] <jieryn-w> k [19:12:13] <jieryn-w> will revert it back to hudson-ja in jenkinsci/pom, sorry [19:14:18] *** cristiano has quit IRC [19:14:39] <mindless> rtyler: remote-slave-5 has 2 builds running 19hr [19:15:05] <rtyler> mindless: what would you like me to do about it? they're hung, not the machine :P [19:15:25] <rtyler> they've done a great job using up most of the swap on it though [19:17:12] <rtyler> killing with extreme prejudice [19:18:03] <rtyler> restarted with the new JNLP url [19:18:04] <jieryn-w> mindless: https://github.com/jenkinsci/pom/commit/9c4c33742fc95cbcfce79d10cce4b87f727526a2 [19:19:40] <mindless> jieryn-w: thx [19:20:24] <jieryn-w> will push another release then? [19:21:24] *** Stubbs has quit IRC [19:24:19] <mindless> ok [19:27:09] <mindless> rtyler: thx [19:28:06] <kohsuke> mindless: https://github.com/jenkinsci/backend-jenkins-plugin-info-plugin [19:28:20] <mindless> thx [19:28:21] <kohsuke> Sorry it took more than 15 minutes [19:28:24] <mindless> heh [19:28:38] <mindless> no soup for you [19:28:47] <kohsuke> :-( [19:29:12] <edorian> Hi there. Upgrading on debian with the guide ( http://wiki.jenkins-ci.org/display/JENKINS/Upgrading+from+Hudson+to+Jenkins ) worked like a charm. Thanks for your work ! [19:29:22] *** awb has joined #jenkins [19:29:32] <kohsuke> thanks for the report, and thanks for upgrading! [19:29:42] *** kenneth_reitz has joined #jenkins [19:29:44] <rtyler> circle of thanks [19:29:45] <rtyler> heh [19:30:28] <rtyler> kohsuke: can a google group be made invite only? [19:30:35] <kohsuke> Yes [19:30:48] <rtyler> kohsuke: want to create a jenkins-distribution list? [19:30:55] <rtyler> I need a uniform means of or -dist [19:30:56] <rtyler> er [19:31:10] <rtyler> I need a means of contacting all the mirrors at once [19:31:14] <kohsuke> Makes sense [19:31:28] <rtyler> sending out individual emails last night sucked [19:31:29] <kohsuke> Any reason you don't want to create one yourself :-) ? [19:31:46] <kohsuke> (Not that I mind doing that) [19:31:47] <rtyler> kohsuke: because I want you to own the list :) [19:31:52] <kohsuke> OK [19:32:19] <kohsuke> jenkinsci-dist? [19:32:23] <kohsuke> jenkinsci-mirrors? [19:32:23] <rtyler> sure [19:32:29] <rtyler> I don't care [19:33:17] *** kenneth_reitz has quit IRC [19:34:41] *** DamZ is now known as DamZzzz [19:35:07] <mindless> kohsuke: for java packages, do you prefer (or have you already used anywhere) org.jenkins_ci or org.jenkinsci ? [19:35:38] <kohsuke> abayer bought jenkinsci.org domain [19:35:44] <kohsuke> so we can use org.jenkinsci as the package name [19:35:54] <mindless> k [19:38:08] *** dvaske has joined #jenkins [19:39:14] <kisielk> is there a way to limit how many builds worth or artifacts are kept around? [19:40:22] <ccutrer> kiselk: "Discard Old Builds", right near the top of job configuration [19:40:35] <ccutrer> you can click Advanced to have options for just artifacts [19:40:57] <kisielk> ah, that's what I was missing [19:41:07] <kisielk> I want to keep the builds, just not the artifacts [19:43:40] <kisielk> will it retroactively delete old artifacts? [19:44:05] <ccutrer> yes, but not immediately [19:44:17] <ccutrer> I think it runs it as some sort of daily or hourly maintenance task [19:44:28] <kisielk> or I guess maybe next time it builds [19:44:42] *** DamZzzz is now known as DamZ [19:44:47] <kisielk> if I'm going by number of artifacts, not days [19:45:53] *** DamZ is now known as DamZzzz [19:50:14] *** stephendonner has joined #jenkins [19:51:09] <gsson> Interesting, if all I do is add this test: http://5957b6ea680dc773.paste.se/ the previously failing one suddenly passes [19:54:15] <meonkeys> is there a way to have jenkins fail faster for multi-module maven builds? [19:55:52] *** kenneth_reitz has joined #jenkins [19:56:27] <mindless> jieryn-w: plugin-info on wiki is updated.. let me know if you see any problems [19:58:09] <jieryn-w> looks good to me [19:58:43] *** DamZzzz is now known as DamZ [19:59:49] <jieryn-w> thank you :)) [20:01:54] <mwalling> mindless: i almost replied back to yoru chucknorris -dev post with a chuck norris joke [20:01:58] <mwalling> :) [20:01:58] *** thkoch has quit IRC [20:02:37] * mindless checks phrasing [20:02:50] <mindless> hmmmm [20:06:15] *** afoglia_ is now known as afoglia [20:06:41] *** ugupta1 has joined #jenkins [20:06:52] <ugupta1> hey guys [20:07:14] <ugupta1> how do you make maven build fail fast with maven build [20:07:40] * meonkeys noticed "mvn --fail-fast"... [20:07:53] <meonkeys> ugupta1: hey, you have the same question? :) [20:08:20] <ugupta1> yes :) [20:09:23] *** cowboyd has quit IRC [20:15:40] *** steph021 has joined #jenkins [20:15:49] *** recampbell has joined #jenkins [20:17:16] *** cowboyd has joined #jenkins [20:19:58] *** DamZ is now known as DamZzzz [20:21:03] *** Stubbs has joined #jenkins [20:21:45] *** _marc` has joined #jenkins [20:22:17] *** cowboyd_ has joined #jenkins [20:25:39] *** cowboyd has quit IRC [20:26:47] *** kenneth_reitz has quit IRC [20:29:24] <meonkeys> hmm, --fail-fast didn't work w/Maven 2 in the "Goals and options" part of a Maven build "Build" section [20:29:28] <meonkeys> I'll try Maven 3 [20:30:50] *** awb has quit IRC [20:31:15] <meonkeys> worked! [20:34:44] *** bmahe has joined #jenkins [20:40:55] <meonkeys> aha, maybe it wasn't --fail-fast in the maven build that worked, but actually switching to Maven 3. [20:41:17] <meonkeys> Anyway, now we've got fail fast. Yay! :) [20:41:27] *** tobias has quit IRC [20:41:34] <meonkeys> faster feedback means more developer productivity! [20:44:42] *** Weltraumschaf has joined #jenkins [20:46:17] <jieryn-w> maybe i'm not understanding what this option does [20:46:34] <jieryn-w> when does an error in the reactor not fail immediately? [20:48:22] <meonkeys> I can't answer the general question, but we have a multi-module maven build. When building the whole thing (as part of one maven-style job) [20:48:32] <meonkeys> it would march past test failures [20:48:49] <meonkeys> onto other modules (even if they depend on the previous ones) [20:49:12] <meonkeys> from the command line on our local dev machines, the behavior of maven was different... it would "fail fast" [20:49:24] <meonkeys> skipping other modules in the multi-module build if any failed. [20:49:54] <meonkeys> (this was all with Maven 2, mind you) [20:50:22] <jieryn-w> check your mvn help:effective-pom | grep testFailureIgnore [20:50:35] <jieryn-w> it's a surefire configuration option [20:51:01] <meonkeys> now, with Maven 3 in Hudson (sorry, still using that fork) we've just noticed that it appears to fail the whole build if any tests of any module fail (and that's a red ball, btw) [20:51:28] <jieryn-w> ok? [20:51:35] <jieryn-w> you either want to fail the build or not :) [20:51:55] * meonkeys is trying your suggestion to look for testFailureIgnore [20:53:06] *** tobias has joined #jenkins [20:53:11] <meonkeys> we're not using testFailureIgnore... I'm saying that it seems like a peculiar behavior of Hudson w/the Maven 2 plugin. [20:53:21] <meonkeys> Maven plugin, rather, using Maven version 2. [20:53:55] <meonkeys> anyway, what I *want* is for fast feedback, so "fail fast" ... stop building if tests fail. [20:54:33] <meonkeys> only thing that was curious to me is that it shows up as a "failed" build instead of an "unstable" build [20:54:47] *** recampbell has quit IRC [20:55:12] <jieryn-w> if you have maven fail the build, either with testFailureIgnore=false or apparently --fail-fast, then jenkins is doing the right thing by failing the job [20:56:55] <meonkeys> with version 1.393 and Maven 3, apparently neither is required and the build still fails if a test fails. See for yourself: http://ci.mifos.org/hudson/job/head-hudsonBuild/1004/ [20:58:27] *** afex has joined #jenkins [20:59:01] <jieryn-w> i guess i'm confused, sorry [20:59:05] <jieryn-w> i'm not seeing an issue [20:59:35] <meonkeys> oh, so, I was just wondering why if a test failed the build is marked "failed" rather than "unstable" [20:59:58] <jieryn-w> because maven failed the build [21:00:04] <jieryn-w> so that percolates up to the hudson job [21:00:28] <jieryn-w> Caused by: org.apache.maven.plugin.MojoFailureException: There are test failures. [21:00:37] <meonkeys> same code built w/Maven 2: a failed test didn't fail the build [21:00:55] <meonkeys> sorry, sounds like this is more of a Maven question than Jenkins question. [21:01:25] <jieryn-w> well, messages in the console log suggest that you do not lock down your plugin versions [21:01:31] <jieryn-w> this is a well known anti-pattern [21:01:51] <jieryn-w> the net effect is that you are probably using a different version of m-surefire-p for the m2 build than you are for the m3 build [21:02:20] <jieryn-w> i'm not familiar enough with m-surefire-p to state whether there was an update which changed this kind of behavior [21:03:00] <jieryn-w> ah, strike that, i see you're not missing plugin versions [21:03:07] <jieryn-w> other general m3 errors tho [21:03:25] <meonkeys> warnings, not errors [21:03:28] <jieryn-w> nod [21:03:45] <jieryn-w> might wanna bump from m-surefire-p from 2.4.3 to 2.7.2 [21:03:54] <meonkeys> oh? good call [21:12:52] <meonkeys> jieryn-w: did you mean maven-surefire-plugin 2.7.1 ? (That's the latest I see at http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin ) [21:14:23] <meonkeys> nevermind, found http://maven.40175.n5.nabble.com/Maven-Surefire-Plugin-2-7-2-Released-td3357678.html [21:14:30] <jieryn-w> http://maven.apache.org/plugins/maven-surefire-plugin/ [21:14:34] <jieryn-w> 2.7.2, nodnod [21:14:44] <jieryn-w> there were something like 50+ fixes in that 2.7.2 [21:14:56] <jieryn-w> i can't even imagine how many between 2.4.3->2.7.2 [21:16:02] <jieryn-w> 31 + 10 + 28 + 20 + 19 = 108 [21:16:23] <meonkeys> heh, nice [21:17:17] <meonkeys> did you do a query or something? [21:20:29] <jieryn-w> http://jira.codehaus.org/browse/SUREFIRE#selectedTab=com.atlassian.jira.plugin.system.project%3Achangelog-panel [21:20:53] *** olamy has joined #jenkins [21:21:03] <meonkeys> ah nice, thanks [21:25:11] <abayer> kohsuke: I was about to send the same email. =) [21:25:22] *** kenneth_reitz has joined #jenkins [21:26:03] *** akostadinov has quit IRC [21:30:55] *** recampbell has joined #jenkins [21:34:18] *** lacostej has joined #jenkins [21:35:16] <lacostej> hei: how do I ran a single test suite/class from the test module ? -D doesn't seem to work, maybe there's a special option for the jenkins-test-harness ? [21:35:35] <lacostej> doh I mistyped the option trying again [21:36:16] <kohsuke> I normally do it from IDE [21:36:18] <kohsuke> I find it easier [21:36:42] <olamy> lacostej -Dmaven.junit.quiet=false is fine to have output too [21:36:46] <lacostej> Yea but I have a constrained environment [21:37:17] <lacostej> and i don't know why intellij has been very bad on my new laptop / FS since 10.x [21:37:51] <lacostej> olamy: I fixed the svn dependency on BuildMavenTest will send a patch after I put the kids in bed :) [21:38:10] <olamy> hehe [21:38:29] <olamy> this already done for me :-) [21:45:19] <lacostej> System error in Jira [21:45:29] *** rioch has quit IRC [21:45:31] <lacostej> "(Binary logging not possible. Message: Transaction level 'READ-COMMITTED' in InnoDB is not safe for binlog mode 'STATEMENT'))" [21:45:44] *** _rioch has joined #jenkins [21:50:42] <cowboyd_> I tweeted earlier, but I'll be messing around with more jruby integration tonight at 8pm Central for those who want to join in: https://gist.github.com/810067 [21:51:52] <olamy> nice thread here http://mail-archives.apache.org/mod_mbox/www-builds/201102.mbox/browser :-) [21:52:37] <abayer> olamy: =) [21:53:29] <olamy> I was pretty sure to have some +1 here :-) [21:53:40] *** calavera has joined #jenkins [21:54:40] <lacostej> what is the Jira compnent for the test module (integration tests) [21:54:58] <olamy> lacostej no one [21:55:01] <olamy> i think [21:55:07] <lacostej> should we have one ? [21:55:31] <lacostej> i.e. if I want to add issues like speed up test module [21:55:34] <lacostej> etc. [22:01:14] *** dvaske has quit IRC [22:04:13] *** RSchulzB has joined #jenkins [22:05:29] *** statlor has quit IRC [22:06:35] *** simonetripodi has joined #jenkins [22:06:44] <RSchulzB> When using the Git plug-in to trigger Hudson jobs, is it possible to obtain the "Last Built Revision" hash? (Other than by sed/grep/etc. on the Console Output, that is.) [22:06:53] *** eugene__ has joined #jenkins [22:07:43] <eugene__> hi all, need little help, is it possible to setup hudson for rails project? [22:08:52] <lacostej> should I use the master-slave Jira component for the slave run as service on Windows feature ? [22:09:19] <abayer> lacostej: Yes. [22:09:36] <lacostej> eugene__: you can http://wiki.jenkins-ci.org/display/JENKINS/Configuring+a+Rails+build [22:10:32] <eugene__> locostej: thanks, but will it work with rails 3? [22:10:53] <lacostej> I don't see why it shouldn't [22:11:02] <abayer> RSchulzB: it's available via the API - to see what's there, go to the build URL, then add /api/xml (or /api/json, etc). [22:11:21] <RSchulzB> I need access from the shell script triggered by the job. [22:11:56] <eugene__> lacostej: ok, thanks [22:12:08] <lacostej> eugene__: in this configuration, jenkins uses a free-style project. Basically appart from input/output and return codes, it doesn't know anyting about the underlying build [22:13:02] <lacostej> I am tempted to use labels in Jira, like patch, regression etc. Any guidelines ? [22:13:19] <abayer> It's not set as an environment variable, if that's what you're looking for. [22:13:26] <abayer> (that was to RSchulzB) [22:14:22] <RSchulzB> That would be ideal, yes. [22:14:38] <RSchulzB> How does the API help? [22:14:45] <eugene__> one more question, for now I'm using cruisecontrol.rb for my rails project, but I I need to be able easily navigate to the tests that failed (not convenient to find them in the build log), is there any option for hudson? [22:17:36] *** dhackner has quit IRC [22:20:25] <RSchulzB> Is there an environment variable that lets one access the Console Log file for the job currently running (from that job)? [22:21:25] <abayer> You could figure out the URL for it from available environment variables - but it really would be easier to go through the API for that. [22:21:27] <RSchulzB> Hmmm? Perhaps BUILD_URL [22:21:36] <RSchulzB> How? [22:21:41] <abayer> Since it's the same URL and all. [22:21:42] <RSchulzB> You didn't tell me what good that does me. [22:21:54] <RSchulzB> That API, that is. [22:24:51] <abayer> http://ci.jenkins-ci.org/job/jenkins_main_trunk/480/api/xml?xpath=//lastBuiltRevision/SHA1 [22:25:21] <abayer> Not sure how to get the same drill down with /api/json. [22:25:58] <RSchulzB> Oh. By API you don't mean a Java API. ? When did service interfaces start being called application programming interfaces? [22:26:06] <abayer> Beats me. =) [22:26:39] <RSchulzB> That's probably better than curl-ing .../console and grep-ing. [22:26:42] *** d2m has joined #jenkins [22:27:49] <jieryn-w> were we going to create projects for each plugin? [22:28:01] <jieryn-w> or continue on the component model [22:28:42] <abayer> jieryn-w: never figured that out. That's a *lot* of projects. I was tending towards breaking out the most significant plugins into their own projects (i.e., if they've got X+ issues against them?) and leaving the rest in a catch-all. [22:28:48] <cowboyd_> dunno if it's been reported yet, but my fresh install of jenkins sends a test email with hudson in the body. [22:28:58] <RSchulzB> abayer: Is there a name for that API? Something I can Google to find out what all's in there? [22:29:03] <jieryn-w> agreed, abayer, it would be a gigantic operation [22:29:08] <abayer> cowboyd_: reported and fixed in the next release. =) [22:29:39] <cowboyd_> awesome [22:29:47] <abayer> RSchulzB: go to any job or build, etc in Jenkins and add /api to the URL. [22:30:11] <RSchulzB> ! So cool. Thanks. [22:30:34] <lacostej> guys, I've queued a few fixes today: https://github.com/lacostej/jenkins I don't think I can make multiple pull requests, I should have made branches for each individual fix, maybe? How do we proceed ? [22:30:57] <abayer> Already sent in a pull request? [22:31:21] <lacostej> I have one waiting yes [22:31:26] <lacostej> id27 if I remember [22:31:56] <lacostej> but that one isn't complete as one module is still in svn java.net [22:32:07] <lacostej> i.e. it's a pull request + a patch in Jira [22:32:34] *** awb has joined #jenkins [22:32:37] <abayer> Yeah, branch for each change is a good way to handle it - will your first change cause problems if executable-war hasn't yet been updated? [22:32:58] <lacostej> the real fix is in exectuable-war [22:33:06] <lacostej> the rest I added because it helped me troubleshoot [22:33:11] <abayer> https://github.com/jenkinsci/extras-executable-war =) [22:33:15] <lacostej> cool [22:33:26] <lacostej> let me fork / submit a pull request [22:33:36] <abayer> Once you've done that, I'll handle the pull requests. [22:34:45] *** eugene__ has quit IRC [22:38:46] *** esteele has quit IRC [22:40:52] *** kenneth_reitz has quit IRC [22:41:03] <mindless> evilchili: did you see my comment on your rfe? [22:41:31] *** blip has quit IRC [22:41:42] <evilchili> mindless: i did! replied to it [22:42:58] <lacostej> I am wondering if you maybe want me to split those 2 commits in 4 [22:45:26] <mindless> evilchili: replied where? [22:46:02] <abayer> lacostej: meh, I'll survive. =) [22:46:05] <lacostej> damn it [22:46:14] <evilchili> mindless: via email. I guess that doesn't update the issue [22:46:15] <evilchili> copy/pasting now [22:46:25] <lacostej> abayer I didn't know that github would next commits to my pull request [22:46:28] <lacostej> this isn't practical [22:47:04] <lacostej> would (add the) next commits... [22:47:24] *** d2m has quit IRC [22:47:27] <abayer> 'k - if you want to kill those pull requests and start from scratch, that's fine by me. [22:47:42] <lacostej> abayer: not sure how I can do this easily [22:48:00] <lacostej> maybe create a branch for pulling ? [22:48:02] <abayer> Try cherry picking your commits onto branches? [22:48:10] <lacostej> yea... damn it [22:48:14] <lacostej> brb [22:48:55] *** kenneth_reitz has joined #jenkins [22:49:05] *** d2m has joined #jenkins [22:51:37] *** vjuranek has quit IRC [22:54:50] <lacostej> abayer: done. See https://github.com/jenkinsci/jenkins/pull/28 and https://github.com/jenkinsci/extras-executable-war/pull/1 [22:55:20] <abayer> Thanks - pulling/buildign now. [22:56:33] *** d2m1 has joined #jenkins [22:56:42] *** hare_brain has joined #jenkins [22:57:38] *** d2m has quit IRC [22:59:59] *** Weltraumschaf has left #jenkins [23:02:56] <lacostej> abayer: do you want me to make a branch per commit for you to pull easily ? [23:03:16] <abayer> Sure, that does make things simpler in terms of just pulling one change at a time. [23:04:47] <lacostej> some I just want review on, ok if I just point them as is ? [23:04:57] <lacostej> so I don't end up with 5 branches... [23:07:59] *** neshaug has quit IRC [23:10:33] *** Juri_Agarin has joined #jenkins [23:11:14] *** kinow has joined #jenkins [23:14:31] <lacostej> abayer: all commits have now a specific branch and pull request [23:14:34] <lacostej> damn I like git [23:14:57] <kenneth_reitz> lacostej: there's nothing better :) [23:14:58] <lacostej> I remember back in the days when I was maintaining my queue of patches for cruisecontrol and it was a mess [23:15:09] *** yairgo has joined #jenkins [23:15:09] <lacostej> even if I had tools for it' [23:15:20] *** kstreith has quit IRC [23:15:26] <lacostej> ok movie time. bye ! [23:15:57] <mwalling> Please wait while Jenkins is getting ready to work.. [23:16:00] <mwalling> \o/ [23:17:15] *** abayer has quit IRC [23:17:43] <jieryn-w> heh :) [23:18:19] *** elliot has quit IRC [23:18:35] *** Lewisham has joined #jenkins [23:18:36] *** ChanServ sets mode: +v Lewisham [23:23:09] *** larrys has quit IRC [23:23:23] *** yairgo has quit IRC [23:24:11] *** larrys has joined #jenkins [23:24:27] *** lacostej has quit IRC [23:25:28] <meonkeys> is jenkins totally on git now? (ie: no svn bridge or whatever) [23:25:28] *** abayer1 has joined #jenkins [23:25:37] *** abayer1 is now known as abayer [23:25:38] *** ChanServ sets mode: +o abayer [23:28:08] *** abayer has quit IRC [23:28:21] <rtyler> heh [23:28:34] <rtyler> meonkeys: not entirely, core is entirely in git though [23:28:58] *** abayer has joined #jenkins [23:28:58] *** ChanServ sets mode: +o abayer [23:29:48] <larrys> rtyler: where's my voice? Did not all the voice settings transfer over? [23:30:02] <rtyler> none of them did :P [23:30:12] <rtyler> i'll correct that :) [23:30:13] <larrys> slacker! I mean? oh okay :) [23:30:24] <rtyler> rejoin plz [23:30:31] <larrys> is this a trick? [23:30:32] *** larrys has left #jenkins [23:30:35] *** larrys has joined #jenkins [23:30:35] *** ChanServ sets mode: +v larrys [23:30:42] <larrys> Thanks :) [23:30:42] <rtyler> YES IT IS TRICK [23:30:56] <larrys> I did it anyway, you just have used a jedi mind trick. [23:31:09] <rtyler> sucker [23:31:10] <rtyler> :D [23:31:22] *** abayer1 has joined #jenkins [23:31:23] *** abayer has quit IRC [23:31:33] *** abayer1 is now known as abayer [23:31:34] *** ChanServ sets mode: +o abayer [23:32:35] *** abayer1 has joined #jenkins [23:32:35] *** abayer has quit IRC [23:32:40] *** abayer1 is now known as abayer [23:32:41] *** ChanServ sets mode: +o abayer [23:33:20] <autojack> did accounts from issues.hudson-ci get moved over to issues.jenkins-ci? [23:35:37] <autojack> I can't seem to log in using my old credentials, but I didn't get any email when I tried to reset my pw. [23:37:36] <mwalling> is the CIFS publisher supposed to support >1 targets? [23:39:03] *** Heimidal has quit IRC [23:40:50] *** simonetripodi has quit IRC [23:44:14] <autojack> ok something ain't right. [23:44:31] <autojack> I had set up my login for issues.hudson-ci on java.net [23:44:54] <autojack> I just logged in at java.net with no problem, but I can't log in to issues.jenkins-ci. [23:44:54] <rtyler> autojack: http://jenkins-ci.org/account/ [23:44:59] <autojack> yeah [23:45:02] <rtyler> "reset new password" ? [23:45:11] <autojack> I did that yesterday [23:45:14] <autojack> and I never got an email [23:45:15] <autojack> the page says [23:45:17] <autojack> You can also specify your e-mail address that you've registered with us. (Except for those accounts that are migrated from java.net, whose e-mail address is set to ID at java dot net, and not your real e-mail address.) [23:45:34] <rtyler> reset again? [23:45:35] <hare_brain> Look in your spam folder. [23:45:36] <autojack> so if it's going to email my password to my user at java dot net, that isn't going to work. [23:45:46] <hare_brain> That email always winds up in my junk folder. [23:46:03] <autojack> I didn't even see the email in my logs. [23:46:29] <autojack> nothing in my spam. [23:46:30] <hare_brain> Speaking of that account URL, it looks like fisheye.jenkins-ci.org is still authenticating with java.net, and not the unified LDAP for jenkins-ci.org [23:47:05] <autojack> it's probably emailing my old work address or something [23:47:07] <autojack> I have no clue [23:47:27] <jieryn-w> fscking fedex [23:47:47] <autojack> but I have a bug I've been waiting to file since last week. [23:48:30] <jieryn-w> i ordered my gf a 64Gb, 3G ipad and fedex just lied about delivery attempt [23:48:32] <hare_brain> I just did a reset a few minutes ago. The email I received came from admin at jenkins-ci dot org, and the subject is "Your access to jenkins-ci.org" if that helps you search. [23:49:11] <autojack> that does help, thanks [23:52:33] <autojack> there we go [23:52:54] <autojack> FINALLY. [23:54:05] <autojack> ...now how do I change my password?? [23:54:59] <rpetti> http://jenkins-ci.org/account [23:55:23] <autojack> hah [23:55:31] <autojack> that didn't let me reset it, it reset it and sent me the new one. [23:55:34] <autojack> how do I change that? [23:55:41] <rpetti> update your profile [23:55:57] <hare_brain> and scroll down [23:56:01] <autojack> ahhhh [23:56:02] <autojack> man [23:56:12] <autojack> either I'm retarded or that's rather unintuitive ;) [23:56:18] <autojack> (feel free to tell me it's the former) [23:57:06] <rpetti> I would say "profile" isn't really the right word to use [23:57:24] <autojack> I guess part of it is you can log in on issues.-- but you can't change your pw from there [23:57:33] <rpetti> yep [23:57:36] <autojack> but you can go to a profile/account page there and see some stuff... [23:59:59] <rpetti> Is it just me, or does the background on the "Jenkins" logo in the top left corner of http://ci.jenkins-ci.org/ not match the color of the rest of the top bar?