Re: Windows builds/tests for core disabled

2017-02-12 Thread Slide
We have Functions.isWindows() that I can use as well. I found out how to do
it and never replied back to my original email. I am applying the last
fixes and should have Windows green soon.

On Sun, Feb 12, 2017 at 5:27 PM Baptiste Mathus  wrote:

> Not tested, but as advised by Jesse, something like:
>
> Assume.assumeFalse(System.getProperty("os.name").toLowerCase().startsWith("win"));
>
> To simply disable those tests on Windows as a quick fix for current builds?
> I agree it's even better than disabling them through @Ignore, to get us
> back to green, then take more time to possibly fix them more
> thoroughly/durably.
>
> 2017-02-12 17:30 GMT+01:00 Slide :
>
> I've made some progress on this. We started at about 60 something tests
> failing and we're now down to about 15 tests failing. Some of them need to
> be skipped on windows at this point. I don't remember how to do that, so if
> someone knows off the top of their head, that would be great.
>
> On Wed, Feb 8, 2017, 14:13 Daniel Beck  wrote:
>
>
> > On 08.02.2017, at 21:58, Slide  wrote:
> >
> > It doesn't look like it did, I only see a Linux build happening see
> [1].  I don't think I have direct commit rights on jenkinsci/jenkins.
>
> I created a branch and added the Windows build back on it.
>
> https://github.com/jenkinsci/jenkins/tree/windows-ci
>
> PRs against that branch should do what you need them to do.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/EC53E90C-6126-43F0-B661-F2FF0B0E0C40%40beckweb.net
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
>
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVeN1xBtKM6RH1DcqBEtcLbffbsgukDRMHt2R8pnh6XeLg%40mail.gmail.com
> 
> .
>
>
> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/CANWgJS63nwb4ydjh_8ubJK62XMh0xMTmpvFMp%2Bg9OgdSOVFX0A%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVdRqhK4DkkgrCcoorc7%3DKSvnVGJhFSDnCWTjQB-r6AZPg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-12 Thread Baptiste Mathus
Not tested, but as advised by Jesse, something like:

Assume.assumeFalse(System.getProperty("os.name").toLowerCase().startsWith("win"));

To simply disable those tests on Windows as a quick fix for current builds?
I agree it's even better than disabling them through @Ignore, to get us
back to green, then take more time to possibly fix them more
thoroughly/durably.

2017-02-12 17:30 GMT+01:00 Slide :

> I've made some progress on this. We started at about 60 something tests
> failing and we're now down to about 15 tests failing. Some of them need to
> be skipped on windows at this point. I don't remember how to do that, so if
> someone knows off the top of their head, that would be great.
>
> On Wed, Feb 8, 2017, 14:13 Daniel Beck  wrote:
>
>>
>> > On 08.02.2017, at 21:58, Slide  wrote:
>> >
>> > It doesn't look like it did, I only see a Linux build happening see
>> [1].  I don't think I have direct commit rights on jenkinsci/jenkins.
>>
>> I created a branch and added the Windows build back on it.
>>
>> https://github.com/jenkinsci/jenkins/tree/windows-ci
>>
>> PRs against that branch should do what you need them to do.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Jenkins Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to jenkinsci-dev+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/jenkinsci-dev/EC53E90C-6126-43F0-B661-F2FF0B0E0C40%40beckweb.net.
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/jenkinsci-dev/CAPiUgVeN1xBtKM6RH1DcqBEtcLbff
> bsgukDRMHt2R8pnh6XeLg%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CANWgJS63nwb4ydjh_8ubJK62XMh0xMTmpvFMp%2Bg9OgdSOVFX0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-12 Thread Slide
I've made some progress on this. We started at about 60 something tests
failing and we're now down to about 15 tests failing. Some of them need to
be skipped on windows at this point. I don't remember how to do that, so if
someone knows off the top of their head, that would be great.

On Wed, Feb 8, 2017, 14:13 Daniel Beck  wrote:

>
> > On 08.02.2017, at 21:58, Slide  wrote:
> >
> > It doesn't look like it did, I only see a Linux build happening see
> [1].  I don't think I have direct commit rights on jenkinsci/jenkins.
>
> I created a branch and added the Windows build back on it.
>
> https://github.com/jenkinsci/jenkins/tree/windows-ci
>
> PRs against that branch should do what you need them to do.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/EC53E90C-6126-43F0-B661-F2FF0B0E0C40%40beckweb.net
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVeN1xBtKM6RH1DcqBEtcLbffbsgukDRMHt2R8pnh6XeLg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-08 Thread Daniel Beck

> On 08.02.2017, at 21:58, Slide  wrote:
> 
> It doesn't look like it did, I only see a Linux build happening see [1].  I 
> don't think I have direct commit rights on jenkinsci/jenkins.

I created a branch and added the Windows build back on it.

https://github.com/jenkinsci/jenkins/tree/windows-ci

PRs against that branch should do what you need them to do.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/EC53E90C-6126-43F0-B661-F2FF0B0E0C40%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-08 Thread Slide
It doesn't look like it did, I only see a Linux build happening see [1].  I
don't think I have direct commit rights on jenkinsci/jenkins.


1 - https://ci.jenkins.io/job/Core/job/jenkins/job/PR-2740

On Wed, Feb 8, 2017 at 4:18 AM R. Tyler Croy  wrote:

> (replies inline)
>
> On Tue, 07 Feb 2017, Slide wrote:
>
> > I thought the Jenkinsfile wasn't picked up from anything but master. If I
> > am mistaken, I'll gladly do that.
>
>
> That depends on whether you are able to commit to the repository or not.
> As a
> committer, which IIRC you are, the GitHub Branch Source plugin (IIRC) will
> use
> the pull request's Jenkinsfile.
>
>
>
> - R. Tyler Croy
>
> --
>  Code: 
>   Chatter: 
>  xmpp: rty...@jabber.org
>
>   % gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
> --
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/20170208111757.GX26439%40blackberry.coupleofllamas.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVeHcskH-oKCGdg0dK0JDWp2JwjFaQB9kEvfpHGLjCgBcw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-08 Thread R. Tyler Croy
(replies inline)

On Tue, 07 Feb 2017, Slide wrote:

> I thought the Jenkinsfile wasn't picked up from anything but master. If I
> am mistaken, I'll gladly do that.


That depends on whether you are able to commit to the repository or not. As a
committer, which IIRC you are, the GitHub Branch Source plugin (IIRC) will use
the pull request's Jenkinsfile.



- R. Tyler Croy

--
 Code: 
  Chatter: 
 xmpp: rty...@jabber.org

  % gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
--

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/20170208111757.GX26439%40blackberry.coupleofllamas.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: Digital signature


Re: Windows builds/tests for core disabled

2017-02-07 Thread Slide
I thought the Jenkinsfile wasn't picked up from anything but master. If I
am mistaken, I'll gladly do that.

On Tue, Feb 7, 2017, 13:42 Jesse Glick  wrote:

> On Tue, Feb 7, 2017 at 3:06 PM, Slide  wrote:
> > I was wondering if there was a log or CI available for someone to
> > look at.
>
> Create a branch/PR reënabling Windows-based tests and follow the logs.
>
> There are a bunch that use, say, `hudson.tasks.Shell` rather than some
> portable test builder or a switch to `BatchFile`.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr0bcX%2BT2g_7Otkfo65S9F9dsAxe3W%2BHNM%2BBr2QEKR_Mag%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVdekMoBme0tFJyn4NVWhjg9hORiYzZ9DFERLCa1neapKA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-07 Thread Jesse Glick
On Tue, Feb 7, 2017 at 3:06 PM, Slide  wrote:
> I was wondering if there was a log or CI available for someone to
> look at.

Create a branch/PR reënabling Windows-based tests and follow the logs.

There are a bunch that use, say, `hudson.tasks.Shell` rather than some
portable test builder or a switch to `BatchFile`.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr0bcX%2BT2g_7Otkfo65S9F9dsAxe3W%2BHNM%2BBr2QEKR_Mag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-07 Thread Slide
Most of the failures are due to tests assuming \n as the line ending if I
remember. I was wondering if there was a log or CI available for someone to
look at. I know it was up on ci.j.io, but doubt that many bills are kept
that it would still be there.

On Tue, Feb 7, 2017, 09:17 Jesse Glick  wrote:

> On Tue, Feb 7, 2017 at 3:29 AM, Baptiste Mathus  wrote:
> > @ignore the harder ones
>
> Or rather, `Assume` we are running on Unix unless and until a more
> portable test can be devised.
>
> (Making serious changes to existing tests is a bit risky, because you
> might inadvertently cause it to no longer prove the effectiveness of
> the original bug fix. To be on the safe side, you need to comment out
> the fix and verify that the test still fails in the expected way.)
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr3EB5gy%2BVPCKMxpj%2But5RjX_vOmDMMcZ_fnNQCKg-YB1A%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVdcuwVsMnC8F4aYPhuwGyhF1tMOSJc8VmqZZ59p2U0WZg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-07 Thread Jesse Glick
On Tue, Feb 7, 2017 at 3:29 AM, Baptiste Mathus  wrote:
> @ignore the harder ones

Or rather, `Assume` we are running on Unix unless and until a more
portable test can be devised.

(Making serious changes to existing tests is a bit risky, because you
might inadvertently cause it to no longer prove the effectiveness of
the original bug fix. To be on the safe side, you need to comment out
the fix and verify that the test still fails in the expected way.)

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr3EB5gy%2BVPCKMxpj%2But5RjX_vOmDMMcZ_fnNQCKg-YB1A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-07 Thread Baptiste Mathus
+1. Better reenable Windows tests ASAP. Agree to fix low hanging fruits,
and just @ignore the harder ones to get back to a green build.

Le 7 févr. 2017 8:06 AM, "Daniel Beck"  a écrit :

>
> > On 06.02.2017, at 18:23, Slide  wrote:
> >
> > Just skipping them seems too hacky to me.
>
> IMO we should get Windows testing back ASAP -- so if skip on Windows +
> TODO comment gets us there more quickly, we should do so.
>
> While it doesn't improve the Windows coverage, it will at least prevent
> regressions.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/jenkinsci-dev/44B2E1D6-B1D7-4938-BCE3-0983EDEE4909%40beckweb.net.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CANWgJS6rAAiZfyVuHEw9ay9gVKEZFL74fE65nLNvo_we2GOLGg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-06 Thread Daniel Beck

> On 06.02.2017, at 18:23, Slide  wrote:
> 
> Just skipping them seems too hacky to me.

IMO we should get Windows testing back ASAP -- so if skip on Windows + TODO 
comment gets us there more quickly, we should do so.

While it doesn't improve the Windows coverage, it will at least prevent 
regressions.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/44B2E1D6-B1D7-4938-BCE3-0983EDEE4909%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-06 Thread Slide
(replies inline)

On Mon, Feb 6, 2017 at 10:11 AM R. Tyler Croy  wrote:

> (replies inline)
>
> On Sun, 05 Feb 2017, Slide wrote:
>
> > I won't be at the hackathon, but I'll take a look. Some of the tests were
> > written without any windows considerations taken into account, so the
> > sooner we can get this fixed (so people who write new tests get feedback
> on
> > windows being broken by them) the better.
>
> Is there a compelling reason not to just mark all these failing tests as
> skipped on the Windows platform and move on?
>

Well, from what I can see, several of the tests are just newline issues,
people expect \n only, when on Windows it should be \r\n. I don't think we
should skip tests for just that reason, we should fix as many of the tests
as possible so that we have as good of coverage on Windows as on Linux.
Just skipping them seems too hacky to me.



>
> - R. Tyler Croy
>
> --
>  Code: 
>   Chatter: 
>  xmpp: rty...@jabber.org
>
>   % gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
> --
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/20170206171055.GU26439%40blackberry.coupleofllamas.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVfmJ0CzKKQ09Su%3D1dYQirW8xvzMq1rP-v%2BCY2vBPa0d7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows builds/tests for core disabled

2017-02-06 Thread R. Tyler Croy
(replies inline)

On Sun, 05 Feb 2017, Slide wrote:

> I won't be at the hackathon, but I'll take a look. Some of the tests were
> written without any windows considerations taken into account, so the
> sooner we can get this fixed (so people who write new tests get feedback on
> windows being broken by them) the better.

Is there a compelling reason not to just mark all these failing tests as
skipped on the Windows platform and move on?



- R. Tyler Croy

--
 Code: 
  Chatter: 
 xmpp: rty...@jabber.org

  % gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
--

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/20170206171055.GU26439%40blackberry.coupleofllamas.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: Digital signature


Re: Windows builds/tests for core disabled

2017-02-04 Thread Slide
I won't be at the hackathon, but I'll take a look. Some of the tests were
written without any windows considerations taken into account, so the
sooner we can get this fixed (so people who write new tests get feedback on
windows being broken by them) the better.

On Sat, Feb 4, 2017, 09:11 R. Tyler Croy  wrote:

> I just merged this[0] change to the Jenkinsfile which removes the Windows
> platform from testing.
>
> Due to an issue in the JUnit plugin (which has since been fixed) builds
> were
> appearing to pass despite numerous platform specific test failures.
>
> Unfortunately this means we have no useful testing on Windows for Jenkins
> core,
> again. Those interested in making Jenkins and Windows play nicely together
> may
> wish to coordinate their efforts, perhaps at the Jenkins hackathon on
> Monday[1]?
>
>
> [0] https://github.com/jenkinsci/jenkins/pull/2733
> [1] https://www.meetup.com/jenkinsmeetup/events/236370750/
>
> - R. Tyler Croy
>
> --
>  Code: 
>   Chatter: 
>  xmpp: rty...@jabber.org
>
>   % gpg --keyserver keys.gnupg.net --recv-key 1426C7DC3F51E16F
> --
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-dev/20170204161125.GS26439%40blackberry.coupleofllamas.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/CAPiUgVee4RJjoq4HppPNmNEDWs%2Bw9nKzYscmCXW1B2hqwPzC%2BQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.