Re: Core changelog maintenance

2019-10-24 Thread Mark Waite
Thanks for your maintaining of the changelog and the upgrade guides in the
past.

I'd like to offer my time and effort to maintain the changelog and the
upgrade guide.  Others may also want to offer their help so that we get
deeper coverage of the changelog and the upgrade guide.

Would you be willing to let me record a session with you during the time
that you prepare the upcoming changelogs and the upgrade guides?  I'll use
the recording to guide my creation of the changelog and the upgrade guide
on later releases.  We can invite other interested parties to attend the
tutorial session if they would like and can archive an edited version of
the session on YouTube in case we need it later.

On Thu, Oct 24, 2019 at 12:01 PM Daniel Beck  wrote:

> Hi everyone,
>
> I will stop maintaining the core changelog (weekly and LTS) and upgrade
> guide at the end of October, except insofar as it concerns entries related
> to security fixes. This means that 2.202 is the last changelog I will write.
>
> Regards,
> Daniel
>
> --
> 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/C2942F39-0190-4B26-809A-6065B850332F%40beckweb.net
> .
>


-- 
Thanks!
Mark Waite

-- 
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/CAO49JtFMoKaY5VLBBDVtXdSwGy%2BRqS9v0AL-wZyZqbO96qRF7Q%40mail.gmail.com.


Core changelog maintenance

2019-10-24 Thread Daniel Beck
Hi everyone,

I will stop maintaining the core changelog (weekly and LTS) and upgrade guide 
at the end of October, except insofar as it concerns entries related to 
security fixes. This means that 2.202 is the last changelog I will write.

Regards,
Daniel

-- 
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/C2942F39-0190-4B26-809A-6065B850332F%40beckweb.net.


Re: Mesos Plugin CI: Mesos Installation

2019-10-24 Thread Jesse Glick
On Thu, Oct 24, 2019 at 10:19 AM  wrote:
> Our integration tests require Mesos on a VM. What would be the best way to 
> have Mesos at hand?

https://github.com/jenkins-infra/documentation/blob/master/ci.adoc#node-labels

-- 
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/CANfRfr1TRVpiusdijrjVNSgCH2p2Kh-qNGDAT%2BpGxr32GomsmA%40mail.gmail.com.


Re: How do I fix flaky tests in EXWS WorkspaceCleanupTest?

2019-10-24 Thread Jesse Glick
On Thu, Oct 24, 2019 at 9:42 AM martinda  wrote:
> Below is an example of a flaky test.

But what is the flake?

-- 
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/CANfRfr09m-MSj%2Bp2Ae032-aJ5ZKJPUTVuU6oAzr7QhN%3DgSi3Jg%40mail.gmail.com.


Re: 502 proxy error on ci.jenkins.io

2019-10-24 Thread Jesse Glick
On Thu, Oct 24, 2019 at 9:14 AM Chris Kilding
 wrote:
> is the master being overwhelmed by either the sheer number of steps as they 
> enter the job queue, or the parallelism of those steps when they execute

Quite possibly. The server sets a cap on the number of active elastic
agents, which is fine, but pushing up against that limit seems to
actually cause things to explode, rather than tasks simply waiting
politely in the queue. No one with sufficient access has (to my
knowledge) yet tried to track down whether the problem is in Jenkins
core, Pipeline, the Azure agent plugin we use, or something else.

https://github.com/jenkinsci/bom/blob/f384f08edeb3da9a2ba2c5b83be3fee4b5e0c628/Jenkinsfile#L40-L43

-- 
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/CANfRfr2_9kw15pWuyzA-591MZrsNR3S_OgpGZB0dpvtRMuPsvg%40mail.gmail.com.


Mesos Plugin CI: Mesos Installation

2019-10-24 Thread kjeschkies
Hi,

I’m about to merge the Mesos plugin rewrite back upstream (
https://github.com/jenkinsci/mesos-plugin/pull/360). Our integration tests
require Mesos on a VM. What would be the best way to have Mesos at hand?
Currently we simply install it before each start. This works great since
our machines are single use only.

Thanks for any suggestions.
Karsten.

-- 
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/CAKs8YX%2Bebg%3DSev0tsfXpEX3HzSjz6txCJCHv4iXUBqPNjpn9PA%40mail.gmail.com.


How do I fix flaky tests in EXWS WorkspaceCleanupTest?

2019-10-24 Thread martinda
Hello,

I have flaky tests in the external workspace manager, I am not sure how to 
fix them since I use the latest parent pom (1.51), Jenkins 2.150.3 and its 
BOM.
I suspect it has to do with the JenkinsRule, but I am not sure how to debug 
that. Below is an example of a flaky test.

@Test
public void deleteWorkspace() throws Exception {
WorkflowRun run = createWorkflowJobAndRun(format("" +
"def extWorkspace = exwsAllocate diskPoolId: '%s' \n" +
"node ('linux') { \n" +
"   exws (extWorkspace) { \n" +
"   try { \n" +
"   writeFile file: 'foo.txt', text: 'bar' \n" +
"   } finally { \n" +
"   step ([$class: 'WsCleanup']) \n" +
"   } \n" +
"   } \n" +
"}", DISK_POOL_ID));
j.assertBuildStatusSuccess(run);
j.assertLogContains("[WS-CLEANUP] Deleting project 
workspace...[WS-CLEANUP] done", run);
assertThat(listFiles(tmp.getRoot(), nameFileFilter("foo.txt"), 
directoryFileFilter()), hasSize(0));
}

Any advice on how to fix the flakiness?

Thanks,
Martin

-- 
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/56448720-59fa-4a3f-8c2d-9aa9d8ded5f4%40googlegroups.com.


Re: 502 proxy error on ci.jenkins.io

2019-10-24 Thread Chris Kilding
It happened again this morning.

The recent 502 errors seemed to coincide with builds of certain Jenkins Core 
components, which have a large number of (parallel) steps.

Just an initial idea - is the master being overwhelmed by either the sheer 
number of steps as they enter the job queue, or the parallelism of those steps 
when they execute (they seem to take over almost every executor)?

Chris

On Thu, 3 Oct 2019, at 8:37 PM, Tim Jacomb wrote:
> Seems to be happening again now
> https://p.datadoghq.com/sb/0Igb9a-dca9738dbb5048025c005182a8f240c0
> 
> On Wed, 2 Oct 2019 at 15:14, Paul Allen  wrote:
>> Thanks - It seems to be working now.
>> 
>>  > On 2 Oct 2019, at 10:24, Olblak  wrote:
>>  >
>>  > As you can see on this status page, there is definitely something wrong, 
>> I start looking at it
>>  >
>>  > ---
>>  > -> gpg --keyserver keys.gnupg.net --recv-key 52210D3D
>>  > ---
>>  >
>>  >
>>  >
>>  >
>>  > On Wed, Oct 2, 2019, at 10:37 AM, pallen wrote:
>>  >> Hi Guys,
>>  >>
>>  >> I'm getting a 502 proxy error on ci.jenkins.io? Is it just me or is 
>> there an outage?
>>  >>
>>  >> Kind regards,
>>  >> Paul
>>  >>
>>  >>
>>  >> --
>>  >> 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/fdc23c1f-ecf0-47bc-b4d8-d3bf126b2170%40googlegroups.com.
>>  >
>>  >
>>  > --
>>  > 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/bd355020-3a8e-45ec-a2cc-4eb0f87e68c8%40www.fastmail.com.
>> 
>>  This e-mail may contain information that is privileged or confidential. If 
>> you are not the intended recipient, please delete the e-mail and any 
>> attachments and notify us immediately.
>> 
>>  Perforce Software UK Ltd is registered in England and Wales as company no.
>>  3816019 at the following address: West Forest Gate,
>>  Wellington Road, Wokingham,
>>  RG40 2AT, UK
>> 
>>  -- 
>>  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/5475CAA0-A0A1-4619-9983-3F49D763D1B0%40perforce.com.
> 

> --
>  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/CAH-3Bier9Qgwc6qsDvV_q0yqg_bmzUMi5YoLsbadLaRATeOQBA%40mail.gmail.com
>  
> .

-- 
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/a125c2f9-a61a-4cb3-9d12-44de3fe4726c%40www.fastmail.com.


Re: Any workspace change between LTS 2.138 and 2.150?

2019-10-24 Thread martinda
Thank you Jesse. The BOM is actually awesome. It solved my problem.

-- 
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/a2ec52bc-6622-464f-9da3-19f084996466%40googlegroups.com.


Re: tools.bom not working for recent LTS version of jenkins?

2019-10-24 Thread Jesse Glick
On Thu, Oct 24, 2019 at 1:37 AM Tim Jacomb  wrote:
> I think the main reason for the delay is the trilead-api split from core has 
> caused issues in a few plugins tests

Yes.

In the meantime, just use the 2.174.x BOM. For most purposes this
should be fine, even if the plugin declares `jenkins.version` to be
2.190.1.

If you simply want to test against 2.190.x without _requiring_ it,
leave your `jenkins.version` at something older (with a matching BOM),
and read the documentation for `buildPlugin`.

-- 
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/CANfRfr3Lo0eHpqPYOpNdUatapq6qR-sy__vtXPBQYh0KdNpV1A%40mail.gmail.com.


Re: LF telemetry data policy

2019-10-24 Thread Oleg Nenashev
Thanks for the heads-up! Please also make sure to include Daniel into the 
loop (Uplink, security matters)

FTR some links for those ones who are interested how the telemetry works in 
Jenkins:

   - Uplink Telemetry: https://jenkins.io/blog/2018/10/09/telemetry/
   - Telemetry success story: 
   https://jenkins.io/blog/2019/05/05/telemetry-success/
   - Usage statistics: 
   https://jenkins.io/doc/developer/publishing/usage-statistics/



On Thursday, October 24, 2019 at 7:00:08 AM UTC+3, Kohsuke Kawaguchi wrote:
>
> The Linux Foundation recently adopted a telemetry data policy 
> , which I was 
> told as a reaction to recent data privacy advancements in Europe, and this 
> applies to the usage stats collection that the Jenkins project does.
>
> We talked about this in the CDF TOC, and we agreed that as the first step 
> we need to get the legal review process as outlined in this policy going as 
> soon as possible.
>
> So I'm going to write to the LF legal team. The idea is to explain what 
> we've been doing, and see if they identify some additional work we need to 
> take on to bring us to conformance to the policy.
>
> I'm going to include people like Oleg and Olivier into the conversation as 
> they have intimate knowledge of how this thing works, but if there are 
> other folks who are willing to contribute to this conversation and 
> possible follow up work, let me know, so that I can include you.
>
> -- 
> Kohsuke Kawaguchi
>

-- 
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/43d82a0d-5f97-44a3-a316-ab24fd45548b%40googlegroups.com.


Re: SIG Status

2019-10-24 Thread Olblak
Thanks for your contribution to the Jenkins project, I was glad to meet you and 
I really enjoyed working with you.
Good luck with your other items/projects/whatever it is


---
-> gpg --keyserver keys.gnupg.net --recv-key 52210D3D
---




On Wed, Oct 23, 2019, at 7:23 PM, Jeff Pearce wrote:
> +1, Marky you’ve made a huge contribution to the Jenkins community.

> 

> *From: * on behalf of Mark Waite 
> 
> *Reply-To: *"jenkinsci-dev@googlegroups.com" 
> *Date: *Wednesday, October 23, 2019 at 10:20 AM
> *To: *jenkinsci-dev 
> *Subject: *Re: SIG Status

> 

> Notice: This email is from an external sender.

> 

> Thanks for all your help with the special interest groups!

> 

> On Wed, Oct 23, 2019 at 11:15 AM Marky Jackson  
> wrote:

>> 

>> For the remainder of this year I will by pulling back from my work with 
>> SIG’s for the Jenkins project to focus on some other items.
>> Have a great rest of the year all and happy New Years!
>> 
>> -- 
>> 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/86A89FF1-2A1B-4952-8909-A7261F852D73%40gmail.com.
>> 

> 

> 

> --

> Thanks!

> Mark Waite

> 

> -- 
> 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/CAO49JtFANg8gTHZ4xA03y2xPyQM%3D29ffWp5C75KnnFfkupFuNw%40mail.gmail.com
>  
> .
> 

> 

> --
> 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/A7B07087-3C56-4709-8950-0CB9D093EAAD%40godaddy.com
>  
> .

-- 
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/5f2addd9-5ad7-4e97-90a6-3fb36437ac02%40www.fastmail.com.


2.190.2 availability

2019-10-24 Thread Ildefonso Montero
Hello everyone,

Based on https://jenkins.io/event-calendar/ 2.190.2 should be available
from yesterday here: http://mirrors.jenkins.io/war-stable/, is there any
problem with this? any ETA to having there available?

Thanks in advance!

-- 

*Ildefonso Montero Pérez*
Software Engineer
CloudBees, Inc.


E: imont...@cloudbees.com

-- 
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/CA%2BUGhi9aUEVF18%2B-6FizSanQntTqkrdt_JVangtK5WhY8gvU7g%40mail.gmail.com.