Re: pipeline script and git parameter plugin

2018-08-23 Thread suoyuan . huang
After digging into the git parameter plugin, I find it is hard to get what 
I want since the plugin uses SCM which I do not want it configure in the 
job.

I am now developing my own plugin that meets my demand, see 
list-git-branches-plugin 


Thank you for replying!!


On Friday, August 10, 2018 at 7:45:56 AM UTC+8, Mark Waite wrote:
>
>
>
> On Thursday, August 9, 2018 at 9:55:55 AM UTC-6, suoyua...@shopee.com 
> wrote:
>>
>> Hi, I am running jenkins2 and pipeline for my job
>>
>> My pipeline definition is pipeline script(not pipeline script from SCM) 
>> and I am using git as my scm system.
>>
>> I want to specify a git branch before a build starts. How can I do this?
>>
>
> If you know the list of branch names that you want to present in the list, 
> you can use the Jenkins Minute video 
> https://www.youtube.com/watch?v=5_tvlaIeQUQ as an example to parameterize 
> the PIpeline job.
>
> If you want the list of branches to be generated dynamically based on the 
> contents of the repository, investigate the git parameter plugin at 
> https://plugins.jenkins.io/git-parameter
>
> Mark Waite
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6b39e112-f06b-457c-982b-17dfe221c236%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting cause for branch indexing in multibranch pipeline

2018-08-23 Thread Ramanathan Muthaiah
Thanks Sverre Moe, you made my day !

Here is the final version of the code snippet. 
 

> import jenkins.branch.BranchIndexingCause
>
> final def jenkinsInstance = jenkins.model.Jenkins.getInstance()
> final def jenkinsProject = jenkinsInstance.getItemByFullName(
> jenkinsProjectName)
> if (jenkinsProject != null) {
> final def job = jenkinsProject.getAllJobs().first()
> final def lastBuild = job.getLastBuild()
> final def causes = lastBuild.getCauses()
> final def buildCause = causes.first()
> if (buildCause instanceof BranchIndexingCause) {
>
> }
> }
>

/Ram

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/de24c1bf-16b2-49fa-a566-9e37fd7936fe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: java.lang.NoSuchMethodError: No such DSL method 'pipeline' found among steps

2018-08-23 Thread Pablo Gandulfo
No, I don't.

quarta-feira, 22 de Agosto de 2018 às 21:19:01 UTC-3, Jan Monterrubio 
escreveu:
>
> Do you have the jobdsl plugin installed? 
>
> On Wed, Aug 22, 2018 at 13:45 Pablo Gandulfo  > wrote:
>
>> Hi Mr. Mark Waite,
>>
>> Maybe there is another issue related to this problem, related to 
>> countries using latin encoding as standard (I'm from Brazil).
>>
>> I didn't use any special byte-order mark. These are the steps needed to 
>> reproduce the error:
>>
>> 1) Choose a very simple jenkinsfile:
>>
>> pipeline {
>> agent any
>>
>> stages {
>> stage('Build') {
>> steps {
>> echo 'Building..'
>> }
>> }
>> stage('Test') {
>> steps {
>> echo 'Testing..'
>> }
>> }
>> stage('Deploy') {
>> steps {
>> echo 'Deploying'
>> }
>> }
>> }
>> }
>>
>> 2) Create it with Notepad++, choose UTF-8 encoding, save it and 
>> commit/push to a Git branch;
>>
>> 3) From a Pipeline Job at Jenkins, configure it to retrieve that branch 
>> and run the jenkinsfile;
>>
>> 4) Launch the job. It will complain about "java.lang.NoSuchMethodError: 
>> No such DSL method 'pipeline' found among steps".
>> *Note:* whatever command you choose in the jenkinsfile as the first one 
>> (node, stage, etc.), all of them will throw the same error;
>>
>> 5) At Notepad++, now change to ANSI encoding, save it and commit/push to 
>> Git;
>>
>> 6) Launch the same job. It will run with success.
>>
>> Regards,
>> Pablo.
>>
>> terça-feira, 21 de Agosto de 2018 às 20:15:14 UTC-3, Mark Waite escreveu:
>>>
>>> Can you explain further what you mean when you say that the file was 
>>> formatted with UTF-8?
>>>
>>> As an example, I have a scripted Pipeline Jenkinsfile 
>>>  
>>> which 
>>> includes Japanese characters and is well-behaved.  I am reasonably certain 
>>> that it is UTF-8.  I have a declarative Jenkinsfile 
>>>  
>>> which also includes Japanese characters and is well-behaved.
>>>
>>> Does the file you are editing use a byte-order mark to indicate that it 
>>> is UTF-8?
>>>
>>> Is there some other technique that indicates it is a UTF-8 file?
>>>
>>> If you can provide steps to duplicate the problem, feel free to upload 
>>> those steps to JENKINS-52844, or to create a new bug report if you believe 
>>> that the bug you're seeing does not match JENKINS-52844.
>>>
>>> Mark Waite
>>>
>>> On Tue, Aug 21, 2018 at 2:33 PM Pablo Gandulfo  
>>> wrote:
>>>
 I got this error and invested a considerable amount of time to solve 
 it, searching on internet and trying different approaches, all of them 
 with 
 no success. Finally, I found the cause and solve it. So, I would like to 
 share this knowledge and I hope that someone at Jenkins Developer Team 
 document this to avoid others facing the same problem.

 The cause was that the Jenkinsfile was formatted with UTF-8. That's it! 
 Firstly I was using it in ANSI, but some latin characters were appearing 
 wrongly in the log. So I changed to UTF-8 and, suddenly, every first work 
 I 
 used in the script file (pipeline, node, def, etc.) didn't work anymore, 
 throwing the same error: "java.lang.NoSuchMethodError: No such DSL method 
 'X' found among steps".

 I imagine that this may be the cause of JENKINS-52844 , which was 
 opened recently. So, Andrew Bayer (@abayer), I hope you see this message 
 too.

 Regards,
 Pablo.

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Jenkins Users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to jenkinsci-use...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/jenkinsci-users/0d435cdd-0669-4ed5-9142-bb58730bece6%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/5ba8ecbc-c460-4ba4-9ef3-a2188e122ec2%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because yo

Re: Reg scanning for all branches in Multi branch pipeline

2018-08-23 Thread Satish Lvr
Hi Jan,

Thanks for reply.

How would it know what branches have a jenkins file without scanning them 
all?
-->> Exactly. For the first scan, I am fine with that. But for each PR, 
does it require to scan as my PR is targeted to specific branch.?

Follow up question, why 450 branches? Are they all active or can some of 
them be removed?
-->> Definitely, there is a plan to clean up but needs some time. So 
checking how to optimize the build time mean time.

Regards
Satish.

On Thursday, August 23, 2018 at 6:26:47 AM UTC+5:30, Jan Monterrubio wrote:
>
> Could you use one of those PruneStaleBranches traits?
>
>  
> https://github.com/jenkinsci/git-plugin/blob/dd2b84217cc967bf908c7f2c02beea27973cd884/src/main/java/hudson/plugins/git/extensions/impl/PruneStaleBranch.java
>
>
> >  Or can we add any rule like scan only branches which has Jenkinsfile
>
> How would it know what branches have a jenkins file without scanning them 
> all? 
>
> Follow up question, why 450 branches? Are they all active or can some of 
> them be removed?
>
> On Wed, Aug 22, 2018 at 7:41 AM Satish Lvr  > wrote:
>
>> Hi,
>>
>> Greetings !
>>
>> We are currently using Bitbucket + Jenkins. In our Bitbucket repo, we 
>> have around ~450 branches due to some old reasons.
>> When we raise any Pull request, Jenkins automatically scanning all 450 
>> branches which is taking time to finish build for Pull Request. This is 
>> happening for all pull requests created.
>> Is there any way to avoid to not scan for the branches which we don't 
>> want or which are not active ? Or can we add any rule like scan only 
>> branches which has Jenkinsfile. Most of the branches do not have 
>> Jenkinsfile.
>>
>> Regards
>> Satish.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/23844211-599b-4cac-a239-f3bec3b58aac%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6e19d1ce-2842-411e-a570-23e2cad273e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Reg scanning for all branches in Multi branch pipeline

2018-08-23 Thread Satish Lvr
Hi Jan,

Thank you for the reply.

How would it know what branches have a jenkins file without scanning them
all?
-->> Yeah, it should scan to know initially. But in our case, for each PR
targeted to specific branch also, it is scanning all branches. Can we avoid
it ?

Follow up question, why 450 branches? Are they all active or can some of
them be removed?
-->> Definitely, we need to clean up the branches and it is our plan which
will take some time. So mean time, we are checking to optimize the build
time where we found that scan is taking much time as branches are large in
number.

Regards
Satish.

On Thu, Aug 23, 2018 at 6:26 AM Jan Monterrubio 
wrote:

> Could you use one of those PruneStaleBranches traits?
>
>
> https://github.com/jenkinsci/git-plugin/blob/dd2b84217cc967bf908c7f2c02beea27973cd884/src/main/java/hudson/plugins/git/extensions/impl/PruneStaleBranch.java
>
>
> >  Or can we add any rule like scan only branches which has Jenkinsfile
>
> How would it know what branches have a jenkins file without scanning them
> all?
>
> Follow up question, why 450 branches? Are they all active or can some of
> them be removed?
>
> On Wed, Aug 22, 2018 at 7:41 AM Satish Lvr  wrote:
>
>> Hi,
>>
>> Greetings !
>>
>> We are currently using Bitbucket + Jenkins. In our Bitbucket repo, we
>> have around ~450 branches due to some old reasons.
>> When we raise any Pull request, Jenkins automatically scanning all 450
>> branches which is taking time to finish build for Pull Request. This is
>> happening for all pull requests created.
>> Is there any way to avoid to not scan for the branches which we don't
>> want or which are not active ? Or can we add any rule like scan only
>> branches which has Jenkinsfile. Most of the branches do not have
>> Jenkinsfile.
>>
>> Regards
>> Satish.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to jenkinsci-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jenkinsci-users/23844211-599b-4cac-a239-f3bec3b58aac%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/CADgiF9KDD7YR9igSWbQUKmhHK1QoXr7Ph1Y7AxOiVjTU-4h-sw%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 Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CABp7qkd89-uvRCrn-qfF4GO--qobYPmsjZcrTd-q7QBiwpy1ig%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Which plugin to use for choosing app/version to deploy from Openshift registry

2018-08-23 Thread Adam Hardy
We're building a CD pipeline where multiple git branches are built and 
deployed in dev, but for OAT/UAT/Prod, we want to choose from the list of 
apps and versions available on our Openshift docker registry.

The dev / test part works well with Jenkins and Openshift, and it puts all 
our docker images into the integrated Openshift docker registry.

But I'm having a problem with the manual intervention step required to 
choose what goes into OAT/UAT. 

My idea is for a Jenkins job to launch a dialog or wizard to choose the 
app, and then the versions, and then run the deployment to the Openshift 
OAT/UAT env.

I can't find anything for Jenkins though that will display what I want when 
I launch the job, i.e. a list of apps and versions, and let me integrate it 
with the script to deploy to Openshift.

The only plugin I could find which might help is the Jenkins Openshift 
plugin, but it has no UI component as far as I can tell.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/522e7d8e-717c-4774-80ef-340a2dea1b77%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ICT Conf'18 Conference

2018-08-23 Thread Emir Özbir
Dear DevOps and CI/CD*2 Engineers and Jenkins users .  

My name is  Emir Özbir , I'm 3rd class Computer Engineering student at 
Namik Kemal University at Turkey .

We've organized a the first one of conference series it named ICT Conf'16 
the contain Web Application Security, System Administration and Software 
Development two years ago.

ICT Conf 16 was activity which bring together student and IT Companies .

Students were improved own perspective when the see the companies that use 
the technologies on own product system and share the experiences with them. 
So that we decide the organized ICT Conf'17 at next year and changed the 
topics more DevOps more Cloud Computing and security  and we handled ICT 
Conf'17 again with limited budget.

Each year  we were entertained 450 over attendies in Tekirdag Corlu . In 
this we are transporting our conference to the Istanbul for connect and  
bring together more student with IT Companies . 

ICT Conferences are organized for students  by students , we are handling 
all activity with sponsorship support . This year our conference will be 
two times bigger than the other years . 

We are waiting your all supports to us. Support can be everything t-shirt, 
stickers, fliers promo codes. 
Material which one increase the value of our activity.

Best regards ,
Emir 

Twitter account of our conference https://twitter.com/ictconf18 you can see 
the photos of the other years. 

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/2c332e39-b4f6-4f19-a002-9eceedb33015%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: java.lang.NoSuchMethodError: No such DSL method 'pipeline' found among steps

2018-08-23 Thread Pablo Gandulfo
Hi Mr. Björn,

Humm didn't know that Notepad++ was adding the BOM mark. Great to know 
that. I just tested now, without the BOM mark, and everything works ok.

So, maybe, Jenkins should give a more reasonable error message in these 
cases? I mean, if the problem is the BOM mark, why complain about bad 
script sintax? I searched for some time in internet, and found no reference 
about this cause.

Regards,
Pablo.

quinta-feira, 23 de Agosto de 2018 às 01:49:27 UTC-3, Björn Pedersen 
escreveu:
>
> Hi,
>
>
>> 2) Create it with Notepad++, choose UTF-8 encoding, save it and 
>> commit/push to a Git branch;
>>
>
>
> And I guess that is where  the byte-order mark slips in (thats something 
> that happens mostly on Windows systems, and it's invisible in the file).
> Check 
> https://notepad-plus-plus.org/community/topic/14355/encoding-without-bom-where
>  
> to see how to write a file without BOM mark at the beginning.
>
> Björn
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/e60bffd4-2b24-4bf7-92d5-71e6391f6fc2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Load balanced Jenkins?

2018-08-23 Thread Peter Berghold
I've been messing about a bit with Docker on Digital Ocean and was going to
branch next onto  Docker Swarm stuff.  I was wondering about deploying
Jenkins into a swarm and using a load balancer to switch between instances.

Is anybody aware of way of having multiple instances of Jenkins using the
same configurations other than possibly using slaves?

In other words it in my mind would be kinda useful if I logged into
"jenkins.some.domain" and let the load balancer direct my request between
multiple instances and have them look the same.

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


Re: Help staff the Contributors Corner at DevOps World | Jenkins World 2018

2018-08-23 Thread Ullrich Hafner

> Am 21.08.2018 um 02:56 schrieb Mark Waite :
> 
> We want more people to help the Jenkins project in many different ways.  The 
> Contributors Corner at DevOps World | Jenkins World 2018 is your chance to 
> help others as they learn how to help the Jenkins project.
> 
> If you're attending DevOps World | Jenkins World 2018 in either San Francisco 
> or Nice, and would be willing to give 30 minutes or an hour to assist at the 
> Contributor's Corner table, we'd love to have your help.
> 
> We've assigned themes to different time slots during the conference.  We'll 
> staff the table with people experienced in that theme.  The experienced 
> people will help others contribute and become more experienced in that 
> specific area.  You can help new contributors as they learn how to help the 
> Jenkins project.
> 
> Themes we've chosen:
> Answer Jenkins Questions
> Promoting Jenkins in Your Company
> Documenting Jenkins
> Localizing Jenkins
> Testing Jenkins Plugins (PRs and more)
> Reviewing Jenkins Bugs
> Testing Jenkins
> Supporting Jenkins Platforms
> Organizing a Jenkins Area Meetup
> Helping Jenkins Infrastructure
> Adopt a Jenkins Plugin
> If you're willing to assist new contributors as they learn how to help within 
> one or more of those themes during the conference, reply to this message and 
> I'll include you in the list.

I can help with these themes:
• Testing Jenkins Plugins (PRs and more)
• Reviewing Jenkins Bugs
• Testing Jenkins
• Adopt a Jenkins Plugin

Ulli

> 
> If you have suggestions for additional themes, send them to me.
> 
> Thanks,
> Mark Waite
> 
> --
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-users+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtGZMu-gZknUqGNKxbb94FOJS1Uu%3DO7h8CmM0P3iWECdWg%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 Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/81D378D8-D5E3-4BFE-8678-9D93473A328B%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: Message signed with OpenPGP


Re: Load balanced Jenkins?

2018-08-23 Thread Jan Monterrubio
You can deploy Jenkins from a docker image so you should be able to crate
the same configuration in a new image and deploy two containers like that.

On Thu, Aug 23, 2018 at 12:30 Peter Berghold 
wrote:

> I've been messing about a bit with Docker on Digital Ocean and was going
> to branch next onto  Docker Swarm stuff.  I was wondering about deploying
> Jenkins into a swarm and using a load balancer to switch between instances.
>
> Is anybody aware of way of having multiple instances of Jenkins using the
> same configurations other than possibly using slaves?
>
> In other words it in my mind would be kinda useful if I logged into
> "jenkins.some.domain" and let the load balancer direct my request between
> multiple instances and have them look the same.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/CAArvnv1CkF3k47PuHmGHKne1emF58U2QY%3Dok-8J1jK0dBNgP5Q%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 Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CADgiF9LhSF2AEHTjo4hTQcjhkgKDLqaBpwzAHsKGQ-Bmb%2B%2BBng%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Help staff the Contributors Corner at DevOps World | Jenkins World 2018

2018-08-23 Thread Mark Waite
Thanks Ulli!  Will you be attending in San Francisco, or Nice, or both?

On Thu, Aug 23, 2018 at 4:41 PM Ullrich Hafner 
wrote:

> Am 21.08.2018 um 02:56 schrieb Mark Waite :
>
> We want more people to help the Jenkins project in many different ways.
> The Contributors Corner at DevOps World | Jenkins World 2018 is your chance
> to help others as they learn how to help the Jenkins project.
>
> If you're attending DevOps World | Jenkins World 2018 in either San
> Francisco or Nice, and would be willing to give 30 minutes or an hour to
> assist at the Contributor's Corner table, we'd love to have your help.
>
> We've assigned themes to different time slots during the conference.
> We'll staff the table with people experienced in that theme.  The
> experienced people will help others contribute and become more experienced
> in that specific area.  You can help new contributors as they learn how to
> help the Jenkins project.
>
> Themes we've chosen:
>
>- Answer Jenkins Questions
>- Promoting Jenkins in Your Company
>- Documenting Jenkins
>- Localizing Jenkins
>- Testing Jenkins Plugins (PRs and more)
>- Reviewing Jenkins Bugs
>- Testing Jenkins
>- Supporting Jenkins Platforms
>- Organizing a Jenkins Area Meetup
>- Helping Jenkins Infrastructure
>- Adopt a Jenkins Plugin
>
> If you're willing to assist new contributors as they learn how to help
> within one or more of those themes during the conference, reply to this
> message and I'll include you in the list.
>
>
> I can help with these themes:
> • Testing Jenkins Plugins (PRs and more)
> • Reviewing Jenkins Bugs
> • Testing Jenkins
> • Adopt a Jenkins Plugin
>
> Ulli
>
>
> If you have suggestions for additional themes, send them to me.
>
> Thanks,
> Mark Waite
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtGZMu-gZknUqGNKxbb94FOJS1Uu%3DO7h8CmM0P3iWECdWg%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 Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/81D378D8-D5E3-4BFE-8678-9D93473A328B%40gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: Help staff the Contributors Corner at DevOps World | Jenkins World 2018

2018-08-23 Thread Mark Waite
Thanks Slide!

I'll include you on those topics.  I assume San Francisco only unless you
tell me that you'll also be in Nice.

Mark Waite

On Mon, Aug 20, 2018 at 8:38 PM Slide  wrote:

> See response inline below. Thanks for leading this effort!
>
> On Mon, Aug 20, 2018, 17:56 Mark Waite  wrote:
>
>> We want more people to help the Jenkins project in many different ways.
>> The Contributors Corner at DevOps World | Jenkins World 2018 is your chance
>> to help others as they learn how to help the Jenkins project.
>>
>> If you're attending DevOps World | Jenkins World 2018 in either San
>> Francisco or Nice, and would be willing to give 30 minutes or an hour to
>> assist at the Contributor's Corner table, we'd love to have your help.
>>
>> We've assigned themes to different time slots during the conference.
>> We'll staff the table with people experienced in that theme.  The
>> experienced people will help others contribute and become more experienced
>> in that specific area.  You can help new contributors as they learn how to
>> help the Jenkins project.
>>
>> Themes we've chosen:
>>
>>- Answer Jenkins Questions
>>
>> I can help with this one
>
>>
>>- Promoting Jenkins in Your Company
>>- Documenting Jenkins
>>- Localizing Jenkins
>>- Testing Jenkins Plugins (PRs and more)
>>
>> I can help with this one
>
>>
>>- Reviewing Jenkins Bugs
>>
>> I can help with this onr
>
>>
>>- Testing Jenkins
>>- Supporting Jenkins Platforms
>>- Organizing a Jenkins Area Meetup
>>- Helping Jenkins Infrastructure
>>
>> I can help with this one
>
>>
>>- Adopt a Jenkins Plugin
>>
>> I can help with this one
>
> If you're willing to assist new contributors as they learn how to help
>> within one or more of those themes during the conference, reply to this
>> message and I'll include you in the list.
>>
>> If you have suggestions for additional themes, send them to me.
>>
>> Thanks,
>> Mark Waite
>>
>> --
>>
> You received this message because you are subscribed to the Google Groups
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to jenkinsci-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtGZMu-gZknUqGNKxbb94FOJS1Uu%3DO7h8CmM0P3iWECdWg%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 Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/CAPiUgVd1g%2B-ghjMBS8hqXTn%3D%2BCdEEQo6xzHAB3nMNtzmZFNYFw%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 Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtFedi-bOxPbw1XxqKz1JLGpPPwXUTgoavT-Quk%3D_u_QyQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.