Re: Can I load a declarative Jenkinsfile via a shared library?

2018-01-11 Thread Joe Cavanaugh
You have to have the declarative pipeline 1.2 or higher to do this. I am 
having issues putting the "powershell" keyword in the library... otherwise 
it seems to work. 

On Thursday, January 11, 2018 at 1:41:50 AM UTC-6, Idan Adar wrote:
>
> Indeed possible. See blog post: 
> https://jenkins.io/blog/2017/10/02/pipeline-templates-with-shared-libraries/
>

-- 
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/8727eb84-c74c-4141-bf07-bedfdb9e764f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can I load a declarative Jenkinsfile via a shared library?

2018-01-10 Thread Idan Adar
Any prerequisites?

On Wed, Jan 10, 2018 at 8:46 PM, Daniel Butler 
wrote:

> I believe this was added a month or two ago.
>
> On 10 Jan 2018 6:33 pm, "Idan Adar"  wrote:
>
>> Is the following feasible?
>>
>> 1. Setup a Shared Library in the Jenkins settings
>> 2. In every repository requiring the Jenkinsfile (it is the same one used
>> in multiple repos...), use the following in the Jenkinsfile of the
>> repository instead:
>>
>> (based on https://dev.to/jalogut/centralise-jenkins-pipelines-confi
>> guration-using-shared-libraries)
>>
>> @Library("my-shared-library") _
>> standardPipeline {
>> // properties passed to the shared library
>> }
>>
>> 3. In the Shared Library, use this:
>>
>> def call(body) {
>>   def config = [:]
>>   body.resolveStrategy = Closure.DELEGATE_FIRST
>>   body.delegate = config
>>   body()
>>
>>   pipeline {
>>   // the declarative pipeline as-is as it was previously used in a
>> Jenkinsfile in a repository
>>   }
>> }
>>
>> --
>> 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/ms
>> gid/jenkinsci-users/c878f51d-8097-43fb-a0f5-a95b471f0184%
>> 40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/jenkinsci-users/EG1BLWQq1Mo/unsubscribe.
> To unsubscribe from this group and all its topics, 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/CAO37hbi18NX6yiGCj8_7AApgY0UTt4Q7_eXJcH26%
> 3DQx9NtWBug%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
*Idan Adar*

-- 
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/CAA6x3wf69HCQo%3DeYaE%3DR_41%2BCWSN3xQqPRokp8ETUeqkJwpdoA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can I load a declarative Jenkinsfile via a shared library?

2018-01-10 Thread Daniel Butler
I believe this was added a month or two ago.

On 10 Jan 2018 6:33 pm, "Idan Adar"  wrote:

> Is the following feasible?
>
> 1. Setup a Shared Library in the Jenkins settings
> 2. In every repository requiring the Jenkinsfile (it is the same one used
> in multiple repos...), use the following in the Jenkinsfile of the
> repository instead:
>
> (based on https://dev.to/jalogut/centralise-jenkins-pipelines-
> configuration-using-shared-libraries)
>
> @Library("my-shared-library") _
> standardPipeline {
> // properties passed to the shared library
> }
>
> 3. In the Shared Library, use this:
>
> def call(body) {
>   def config = [:]
>   body.resolveStrategy = Closure.DELEGATE_FIRST
>   body.delegate = config
>   body()
>
>   pipeline {
>   // the declarative pipeline as-is as it was previously used in a
> Jenkinsfile in a repository
>   }
> }
>
> --
> 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/c878f51d-8097-43fb-a0f5-a95b471f0184%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/CAO37hbi18NX6yiGCj8_7AApgY0UTt4Q7_eXJcH26%3DQx9NtWBug%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.