Pipelines, iterating maps and more headaches

2016-04-26 Thread Norbert Lange
Hello,

I trying to get comfortable with Pipelines, so far its a rather
unpleasant experience since I cant even get a simple script going.

1) There seem to be some arcane rules on how to iterate over some
builtin Groovy/Java Types within a sandbox. I haven`t found a way that
works without manually allowing the function.

2) Serialization issues for iterators.

3) Language rules seem inconsistent, for example take the createDList
which seems to execute the code differently (throws errrors, need to
define a explicit variable)

4) Are variables from Closures global??? Is this a Groovy thing or a bug???

There seem to be scarce information on how to write useful simple yet
non-trivial pipeline scripts, even the most basic builtin types can`t
be used freely.
I dont know how to use maps, or if there is a prefered way (which
doesnt needs approval). Layering out code into seperate functions to
not step into serialization issues often results in the very same
lines not working, it even appears there are clashes with variable
names across all scopes?. I hope you got some feedback or pointers on
the issues above.

Kind Regards,
Norbert


Example Pipeline Code follows.
This should fetch some additional modules (the url-mapping shouldnt be
coded in the script and come from a configuration file later), a file
.builddepencies should define name and potentially revision for a
project, should be able to override these (thus a map seems
fitting).All repositories should be checked out from the pipeline
script, remaining build can (and will) be run from shell scripts.

---
// Gonna be a separate, global function when its grown up
def repomap = [
'myscripts': 'ssh://git@localhost:10022/scripts.git',
'myprojekt': 'ssh://git@localhost:10022/myprojekt.git'
]

node {
// Mark the code checkout 'stage'
stage 'Checkout'

// Get some code from a GitHub repository
//git branch: 'master', url: repomap['myprojekt']
sh('echo "fake checkout: ' +  repomap['myprojekt'] + '"')
sh('echo "myscripts=somebranch" > .builddepencies')

// Get name of needed modules
def depmap = [:]
readFile('.builddepencies').eachLine {
def m = (it =~ /([^=]*)=?(.*)/)
depmap[m[0][1].trim()]=m[0][2].trim()
m = null
}

// Just a check so it works (after script approval )
depmap.each {
println 'map: ' + it.key + '=' + it.value
}
// Weird !
println 'it still defined: ' + it.key
// Weirder, no name-scopes in functions?, why is this not working ??
createDList (depmap)

depmap.each {
name = it.key
revision = it.value
it = null // Ok, I could find my way around serialization issues..
dir (name) {
//git url: repomap[name], changelog: false, poll: false
sh('echo "fake checkout: ' +  repomap[name] + '"')
}
}
println 'end'
}

@NonCPS
def createDList(depmap) {
// Need to change the iterator name, then this works?
depmap.each {
println 'map: ' + it.key + '=' + it.value
}
}

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


Re: Jenkins Pipeline Plugin - how to inject global passwords?

2016-04-26 Thread Brian Ray
I recently started experimenting with Credentials Binding with a Pipeline 
script passing a user-password credential down to a *sh*/*bat *step inside 
a *node* block, with the secret values masked perfectly in the log. (The 
step just executed some Groovy that *println System.getenv()'d* the 
protected env variable.) In fact the masking worked so well I had to add 
some equality tests against the value to ensure that the secret value was 
indeed the right value.

Maybe my use case was different than JENKINS-24805.

On Monday, April 25, 2016 at 4:54:14 AM UTC-7, Ant Weiss wrote:
>
> Hi all,
> thanks for your inputs.
> In fact I implemented this with Credentials Binding plugin and it worked 
> great - masking the passwords as it should.
>
> On Monday, April 25, 2016 at 12:55:14 PM UTC+3, Harry G. wrote:
>>
>> Please note: Credentials Binding works, but currently it is not possible 
>> to mask passwords in the log with this solution.
>> https://issues.jenkins-ci.org/browse/JENKINS-24805
>> A PR from Cloudbees is in work, but not finished
>>
>> https://groups.google.com/forum/#!msg/jenkinsci-users/GgX3RSckVlI/LU8IqzqoMwAJ
>>
>> Until this is done, the only way to mask passwords in the log is 
>> EnvInject or MaskPassword Plugin (with their respective backdraws).
>> You could possibly externalize parts of your pipeline to a freestyle job 
>> and use them.
>>
>> Official doc suggests to turn off log (set +x), if you can do this 
>> reliably for all relevant jobs:
>>
>> https://cloudbees.zendesk.com/hc/en-us/articles/203802500-Injecting-Secrets-into-Jenkins-Build-Jobs
>> If you have several people working on build jobs/scripts I would 
>> discourage from doing this.
>>
>> Am Sonntag, 24. April 2016 16:33:22 UTC+2 schrieb Daniel Beck:
>>>
>>>
>>> > On 24.04.2016, at 14:24, Ant Weiss  wrote: 
>>> > 
>>> > What is the right way to do this when wrting pipeline DSL scripts? 
>>> > 
>>>
>>> Credentials and Credentials Binding Plugin: 
>>>
>>> https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Binding+Plugin 
>>>
>>>

-- 
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/094f4375-e30b-474a-88f3-a81d1899eb75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: broke on 2.0 upgrade

2016-04-26 Thread Josh Santangelo

> On Apr 26, 2016, at 12:09 PM, Daniel Beck  wrote:
> 
> 
>> On 26.04.2016, at 21:01, Josh Santangelo  wrote:
>> 
>> Thanks for the reply -- what's the best way to do that if I'm unable to get 
>> to the GUI?
> 
> Delete JENKINS_HOME/plugins/pluginname.jpi.disabled for the respective 
> plugins.

I think that fixed it. Thanks again.

-- 
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/4878E2C2-7A13-4B3D-8FF7-D91BEC69F329%40stimulant.com.
For more options, visit https://groups.google.com/d/optout.


Re: broke on 2.0 upgrade

2016-04-26 Thread Josh Santangelo
Thanks for the reply -- what's the best way to do that if I'm unable to get 
to the GUI?

On Tuesday, April 26, 2016 at 11:51:35 AM UTC-7, Daniel Beck wrote:
>
>
> > On 26.04.2016, at 20:40, Daniel Beck  
> wrote: 
> > 
> > 
> >> On 26.04.2016, at 20:35, Josh Santangelo  > wrote: 
> >> 
> >> I was able to install 2.0, then clicked the button to "install new 
> features". That went ok, and Jenkins starts, but it shows an error on the 
> main page. Attached is a much more verbose log file. 
> > 
> > Are there no other errors in the Jenkins log? 
>
> Nevermind, found it. 
>
> > Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin ant.jpi is disabled 
> > Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin copyartifact.jpi is disabled 
> > Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin cvs.jpi is disabled 
> > Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin external-monitor-job.jpi is disabled 
> > Apr 26, 2016 11:30:40 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin github-api.jpi is disabled 
> > Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin github.jpi is disabled 
> > Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin javadoc.jpi is disabled 
> > Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin pam-auth.jpi is disabled 
> > Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin shelve-project-plugin.jpi is disabled 
> > Apr 26, 2016 11:30:42 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin ssh-slaves.jpi is disabled 
> > Apr 26, 2016 11:30:42 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin subversion.jpi is disabled 
> > Apr 26, 2016 11:30:42 AM hudson.ClassicPluginStrategy 
> createPluginWrapper 
> > INFO: Plugin translation.jpi is disabled 
>
> Enable some or all of these plugins and restart. Probably an unsatisfied 
> dependency (Jenkins is kind of weird when it comes to plugin dependencies, 
> changes are coming soon). 
>
>

-- 
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/6ad442ef-7abb-428c-a0d0-5e09f919ba55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: broke on 2.0 upgrade

2016-04-26 Thread Daniel Beck

> On 26.04.2016, at 20:40, Daniel Beck  wrote:
> 
> 
>> On 26.04.2016, at 20:35, Josh Santangelo  wrote:
>> 
>> I was able to install 2.0, then clicked the button to "install new 
>> features". That went ok, and Jenkins starts, but it shows an error on the 
>> main page. Attached is a much more verbose log file.
> 
> Are there no other errors in the Jenkins log?

Nevermind, found it.

> Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin ant.jpi is disabled
> Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin copyartifact.jpi is disabled
> Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin cvs.jpi is disabled
> Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin external-monitor-job.jpi is disabled
> Apr 26, 2016 11:30:40 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin github-api.jpi is disabled
> Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin github.jpi is disabled
> Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin javadoc.jpi is disabled
> Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin pam-auth.jpi is disabled
> Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin shelve-project-plugin.jpi is disabled
> Apr 26, 2016 11:30:42 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin ssh-slaves.jpi is disabled
> Apr 26, 2016 11:30:42 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin subversion.jpi is disabled
> Apr 26, 2016 11:30:42 AM hudson.ClassicPluginStrategy createPluginWrapper
> INFO: Plugin translation.jpi is disabled

Enable some or all of these plugins and restart. Probably an unsatisfied 
dependency (Jenkins is kind of weird when it comes to plugin dependencies, 
changes are coming soon).

-- 
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/D1C439CB-F186-4412-AF19-8C86290A147D%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


broke on 2.0 upgrade

2016-04-26 Thread Josh Santangelo
I was able to install 2.0, then clicked the button to "install new 
features". That went ok, and Jenkins starts, but it shows an error on the 
main page. Attached is a much more verbose log file.

hudson.util.HudsonFailedToLoad: org.jvnet.hudson.reactor.ReactorException: 
java.lang.Error: java.lang.reflect.InvocationTargetException
at hudson.WebAppMain$3.run(WebAppMain.java:237)
Caused by: org.jvnet.hudson.reactor.ReactorException: java.lang.Error: 
java.lang.reflect.InvocationTargetException
at org.jvnet.hudson.reactor.Reactor.execute(Reactor.java:269)
at jenkins.InitReactorRunner.run(InitReactorRunner.java:44)
at jenkins.model.Jenkins.executeReactor(Jenkins.java:1020)
at jenkins.model.Jenkins.(Jenkins.java:864)
at hudson.model.Hudson.(Hudson.java:85)
at hudson.model.Hudson.(Hudson.java:81)
at hudson.WebAppMain$3.run(WebAppMain.java:225)
Caused by: java.lang.Error: java.lang.reflect.InvocationTargetException
at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:110)
at hudson.init.TaskMethodFinder$TaskImpl.run(TaskMethodFinder.java:175)
at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:282)
at jenkins.model.Jenkins$8.runTask(Jenkins.java:1009)
at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:210)
at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:117)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at hudson.init.TaskMethodFinder.invoke(TaskMethodFinder.java:104)
... 8 more
Caused by: java.lang.NullPointerException
at hudson.plugins.git.GitSCM.onLoaded(GitSCM.java:1734)
... 13 more



-- 
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/70fcd5fc-3bf4-4287-a46f-592448c2e1bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Apr 26, 2016 11:29:21 AM jenkins.model.Jenkins$22 onAttained
INFO: Completed termination
Apr 26, 2016 11:29:21 AM jenkins.model.Jenkins _cleanUpDisconnectComputers
INFO: Starting node disconnection
Apr 26, 2016 11:29:21 AM jenkins.model.Jenkins _cleanUpShutdownPluginManager
INFO: Stopping plugin manager
Apr 26, 2016 11:29:21 AM jenkins.model.Jenkins _cleanUpPersistQueue
INFO: Persisting build queue
Apr 26, 2016 11:29:21 AM jenkins.model.Jenkins cleanUp
INFO: Jenkins stopped
Apr 26, 2016 11:30:36 AM org.eclipse.jetty.util.log.JavaUtilLog info
INFO: Logging initialized @2120ms
Apr 26, 2016 11:30:36 AM winstone.Logger logInternal
INFO: Beginning extraction from war file
Apr 26, 2016 11:30:36 AM org.eclipse.jetty.util.log.JavaUtilLog warn
WARNING: Empty contextPath
Apr 26, 2016 11:30:36 AM org.eclipse.jetty.util.log.JavaUtilLog info
INFO: jetty-9.2.z-SNAPSHOT
Apr 26, 2016 11:30:37 AM org.eclipse.jetty.util.log.JavaUtilLog info
INFO: NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
Apr 26, 2016 11:30:38 AM org.eclipse.jetty.util.log.JavaUtilLog info
INFO: Started w.@feff22{/,file:/C:/Jenkins/war/,AVAILABLE}{C:\Jenkins\war}
Apr 26, 2016 11:30:38 AM org.eclipse.jetty.util.log.JavaUtilLog info
INFO: Started ServerConnector@e7a10e{HTTP/1.1}{0.0.0.0:80}
Apr 26, 2016 11:30:38 AM org.eclipse.jetty.util.log.JavaUtilLog info
INFO: Started @4249ms
Apr 26, 2016 11:30:38 AM winstone.Logger logInternal
INFO: Winstone Servlet Engine v2.0 running: controlPort=disabled
Apr 26, 2016 11:30:38 AM jenkins.InitReactorRunner$1 onAttained
INFO: Started initialization
Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin ant.jpi is disabled
Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin copyartifact.jpi is disabled
Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin cvs.jpi is disabled
Apr 26, 2016 11:30:39 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin external-monitor-job.jpi is disabled
Apr 26, 2016 11:30:40 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin github-api.jpi is disabled
Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin github.jpi is disabled
Apr 26, 2016 11:30:41 AM hudson.ClassicPluginStrategy createPluginWrapper
INFO: Plugin javadoc.jpi is disabled
Apr 26, 

Re: Tutorial on Jenkins - Git Setup

2016-04-26 Thread Mark Waite
Use a Google search for Jenkins in five minutes. Should find the video on
YouTube

On Tue, Apr 26, 2016, 9:14 AM Kaushal Shriyan 
wrote:

>
>
> On Tuesday, 26 April 2016 20:32:43 UTC+5:30, Mark Waite wrote:
>>
>> I did a "Jenkins in 5 minutes" tutorial video a few years ago. It may
>> help you a little with simple startup.
>>
>>
>> https://www.google.com/url?sa=t=web=j==0ahUKEwj0mYfwyKzMAhUT52MKHbf0Cx0Q8TUIHDAA=AFQjCNF1sHlk2z9QIx28jtvfnGP_UlkifA=cJSbSC2BqVHasjPL00F5JA
>>
>> Mark Waite
>>
>
> Hi Mark,
>
> I get a invalid url when i click it. Please comment.
>
> Regards,
>
> Kaushal
>
> --
> 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/c9ec1c53-90fa-46e2-986e-55871a40f406%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/CAO49JtGXHgxpa6RtYp7yiZEzSdJXTifTNXvNh%3DGNnZd8-9Avww%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Pipeline: "Branch not mergable"

2016-04-26 Thread Andrew Melo
Hi-

It appears to be an issue with the GH webhook firing before the 
mergeability is computed.

When that happens, GH gives "null" to the mergeability field, when Jenkins 
is expecting true/false. Then Jenkins treats the branch as unmergeable and 
refuses to build it.

I posted a comment to GH for the branch source and the GH Api plugins -- 
hopefully that will close the loop.

Thanks,
Andrew

On Monday, April 25, 2016 at 12:40:36 PM UTC-5, Andrew Melo wrote:
>
> Hi all, 
>
> Fairly often (~50% of the time), when I push a feature branch up to 
> GH, my multibranch configuration job will get the notification, poll 
> GH, then bomb with: 
>
> Checking pull request #PR-47 
> Not mergeable, skipping 
>
> Even though the branch is mergable. If I force a build manually, it bombs 
> with: 
>
> ERROR: Could not determine exact tip revision of PR-47; falling back 
> to nondeterministic checkout 
>  
> java.io.IOException: Cannot retrieve Git metadata for the build 
> at 
> org.jenkinsci.plugins.github.util.BuildDataHelper.getCommitSHA1(BuildDataHelper.java:34)
>  
>
> at 
> com.cloudbees.jenkins.GitHubCommitNotifier.updateCommitStatus(GitHubCommitNotifier.java:132)
>  
>
>
> This happens until I repeatedly force the branch indexing. Eventually 
> something clicks over, and jenkins is aware of the proper commit. 
>
> Now, I've seen JENKINS-34120, but this appears to be different. The 
> commit is mergeable against master (I'm the only one commiting to 
> master currently, no rebases of the feature branch, etc..), and 
> there's no other status tests that would be keeping it from building. 
> It seems like the actual commit notification is getting scrambled. 
>
> Has anyone else seen this? 
> Cheers, 
> Andrew 
>
> -- 
> -- 
> Andrew Melo 
>

-- 
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/928cbf90-05fe-4a8d-9e5f-ef5e6179d1a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins job fails to trigger build

2016-04-26 Thread Dylan Maxwell
Occasionally when I start a build, that job will fail to trigger a
downstream job.

If I start the exact job again with the same build it will work correctly.
It work right ~80% of the time.

The system log contains no errors around the time of the missed trigger and
there is no indication of an error.


The console output when the trigger FAILS is as follows:

09:54:15 Triggering calc-unstable-2_binaries » amd64,debian08,debian_glue
09:54:20 Configuration calc-unstable-2_binaries »
amd64,debian08,debian_glue is still in the queue: Waiting for next
available executor on debian_glue
10:00:06 calc-unstable-2_binaries » amd64,debian08,debian_glue
completed with result SUCCESS
10:00:06 Triggering calc-unstable-2_binaries » amd64,debian07,debian_glue
10:00:11 Configuration calc-unstable-2_binaries »
amd64,debian07,debian_glue is still in the queue: Waiting for next
available executor on debian_glue
10:07:04 calc-unstable-2_binaries » amd64,debian07,debian_glue
completed with result SUCCESS
10:07:04 Finished: SUCCESS

And  the console out when the trigger is SUCCESSFUL is as follows:

11:36:27 Triggering calc-unstable-2_binaries » amd64,debian07,debian_glue
11:36:32 Configuration calc-unstable-2_binaries »
amd64,debian07,debian_glue is still in the queue: Waiting for next
available executor on debian_glue
11:40:30 calc-unstable-2_binaries » amd64,debian07,debian_glue
completed with result SUCCESS
11:40:30 Triggering calc-unstable-2_binaries » amd64,debian08,debian_glue
11:40:35 Configuration calc-unstable-2_binaries »
amd64,debian08,debian_glue is still in the queue: Waiting for next
available executor on debian_glue
11:49:17 calc-unstable-2_binaries » amd64,debian08,debian_glue
completed with result SUCCESS
11:49:17 Warning: you have no plugins providing access control for
builds, so falling back to legacy behavior of permitting any
downstream builds to be triggered
11:49:17 Triggering a new build of calc-unstable-3_piuparts
11:49:17 Finished: SUCCESS

Notice the warning in the second case: "Warning: you have no plugins
providing access control for builds, so falling back to legacy
behavior of permitting any downstream builds to be triggered"

Does anyone know what may cause these sporadic failures? Or how to better
diagnose the problem?  Or how to correct the above warning?

I am using Jenkins v1.651.1

Any help would be appreciated.

Thanks,
Dylan

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


Re: Tutorial on Jenkins - Git Setup

2016-04-26 Thread Kaushal Shriyan


On Tuesday, 26 April 2016 20:32:43 UTC+5:30, Mark Waite wrote:
>
> I did a "Jenkins in 5 minutes" tutorial video a few years ago. It may help 
> you a little with simple startup.
>
>
> https://www.google.com/url?sa=t=web=j==0ahUKEwj0mYfwyKzMAhUT52MKHbf0Cx0Q8TUIHDAA=AFQjCNF1sHlk2z9QIx28jtvfnGP_UlkifA=cJSbSC2BqVHasjPL00F5JA
>
> Mark Waite
>

Hi Mark,

I get a invalid url when i click it. Please comment.

Regards,

Kaushal

-- 
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/c9ec1c53-90fa-46e2-986e-55871a40f406%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Tutorial on Jenkins - Git Setup

2016-04-26 Thread Mark Waite
I did a "Jenkins in 5 minutes" tutorial video a few years ago. It may help
you a little with simple startup.

https://www.google.com/url?sa=t=web=j==0ahUKEwj0mYfwyKzMAhUT52MKHbf0Cx0Q8TUIHDAA=AFQjCNF1sHlk2z9QIx28jtvfnGP_UlkifA=cJSbSC2BqVHasjPL00F5JA

Mark Waite

On Tue, Apr 26, 2016, 8:49 AM Larry Martell  wrote:

> Look at this post, it really helped me:
>
>
> http://stackoverflow.com/questions/36802309/changing-github-credentials-for-jenkins
>
> On Tue, Apr 26, 2016 at 10:46 AM, Kaushal Shriyan
>  wrote:
> > Hi,
> >
> > I am new to Jenkins CI application. Are there tutorials on Jenkins - Git
> > Setup?
> > Any help will be highly appreciable.
> >
> > Regards,
> >
> > Kaushal
>
> --
> 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/CACwCsY7oy70b1EVKzM5qNtx0GoUWDdVveyP9ufAu9%2B2i9D3DZg%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/CAO49JtGP%2B3mbbno8%3DXCtVbeDjQdY%3DHkt-rRvk1QgmvU1Jh7tBw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Tutorial on Jenkins - Git Setup

2016-04-26 Thread Larry Martell
Look at this post, it really helped me:

http://stackoverflow.com/questions/36802309/changing-github-credentials-for-jenkins

On Tue, Apr 26, 2016 at 10:46 AM, Kaushal Shriyan
 wrote:
> Hi,
>
> I am new to Jenkins CI application. Are there tutorials on Jenkins - Git
> Setup?
> Any help will be highly appreciable.
>
> Regards,
>
> Kaushal

-- 
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/CACwCsY7oy70b1EVKzM5qNtx0GoUWDdVveyP9ufAu9%2B2i9D3DZg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Tutorial on Jenkins - Git Setup

2016-04-26 Thread Kaushal Shriyan
Hi,

I am new to Jenkins CI application. Are there tutorials on Jenkins - Git 
Setup?
Any help will be highly appreciable.

Regards,

Kaushal


-- 
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/91e72425-3136-4948-931c-ecc06980974c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Plugin change logs not being updated

2016-04-26 Thread John Mellor
Is it possible to alter the commit rules to prevent plugin commits unless 
accompanied by a reasonable description of the change?

I'm seeing lots of changes lately with no idea of the nature or danger of the 
change, and therefore no idea of why I  need to install it or maybe hold off on 
a poorly tested change.  E.g this morning, the GitHub API plugin is listing an 
upgrade from 1.72.1 to 1.75 with absolutely no description of what is 
different.  Similarly, there is no description of the changes in the 
Translation Assistance plugin between 1.12 and the latest 1.14 release.

-- 
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/9cc3b5e2313d4ba8b166a097f6fdc908%40mbx01cmb01p.esentire.local.
For more options, visit https://groups.google.com/d/optout.


Re: Some Jenkins servers are down

2016-04-26 Thread Daniel Beck

> On 26.04.2016, at 11:39, Jiří Engelthaler  wrote:
> 
> Confirmed by Jenkins team 
> https://twitter.com/jenkinsci/status/724883801260843009

The mirrors should be back now.

-- 
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/5A55028B-9D52-4C50-A7D6-A8FE62C385AB%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: console run as jenkins i can mkdir, but when i run mkdir in build task, i get permission denied

2016-04-26 Thread koppula chiranjeevi
I am getting the following error message with Jenkins 2.0 build . can you 
help me :

java.io.IOException: Failed to mkdirs: 
/var/jenkins/workspace/clinfo/label/ROCm-Fiji1
at hudson.FilePath.mkdirs(FilePath.java:1163)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1267)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:607)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1738)
at hudson.matrix.MatrixRun.run(MatrixRun.java:146)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
Finished: FAILURE


On Friday, March 8, 2013 at 3:21:04 PM UTC+5:30, KimSia Sim wrote:
>
> I have this command
>
> mkdir /var/virtual/folder
>
> I can execute this when I ssh into my server as `jenkins`
>
> /var/virtual belongs to www-data, but not an issue because I made 
> /var/virtual 775 and `jenkins` is a member of `www-data` group
>
>
> However, when I run the exact same command in my web interface Jenkins 
> system as a build task, I get a permission denied.
>
> I am running  Jenkins ver. 1.504  Please advise.
>

-- 
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/f72a6b64-7fdf-449a-ac3e-741dc258dc29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Having trouble starting Jenkins, where do I find the "/usr/share/java/jenkins/war/META-INF/MANIFEST.MF" file?

2016-04-26 Thread Pravin Mishra
Hi Dave,

Did you fix this issue? I am facing same problem. I am running Jenkins on 
DC/OS. 

// Pravin 

On Friday, 22 April 2016 02:09:38 UTC+5:30, Daniel Beck wrote:
>
> Permissions problem? The user running Jenkins needs write access. 
>
> > On 21.04.2016, at 18:50, Dave  
> wrote: 
> > 
> > I just downloaded the Jenkins WAR, version 1.651.1. I’m trying to set it 
> up on my Amazon Linux box. I’m running Java 1.7. I moved the WAR into its 
> own directory, /usr/share/java/jenkins, and then set JENKINS_HOME to be 
> that directory. Then I ran the command listed here — 
> https://wiki.jenkins-ci.org/display/JENKINS/Starting+and+Accessing+Jenkins 
> . Looked so simple on the web site. But wouldn’t you know it. Got the below 
> error 
> > 
> > [davea@mydevbox ~]$ java -jar /usr/share/java/jenkins/jenkins.war 
> > Running from: /usr/share/java/jenkins/jenkins.war 
> > webroot: EnvVars.masterEnvVars.get("JENKINS_HOME") 
> > Apr 19, 2016 9:29:34 PM winstone.Logger logInternal 
> > INFO: Beginning extraction from war file 
> > Apr 19, 2016 9:29:34 PM winstone.Logger logInternal 
> > INFO: Winstone shutdown successfully 
> > Apr 19, 2016 9:29:34 PM winstone.Logger logInternal 
> > SEVERE: Container startup failed 
> > java.io.FileNotFoundException: 
> /usr/share/java/jenkins/war/META-INF/MANIFEST.MF (No such file or 
> directory) 
> > at java.io.FileOutputStream.open(Native Method) 
> > at java.io.FileOutputStream.(FileOutputStream.java:221) 
> > at java.io.FileOutputStream.(FileOutputStream.java:171) 
> > at winstone.HostConfiguration.getWebRoot(HostConfiguration.java:280) 
> > at winstone.HostConfiguration.(HostConfiguration.java:83) 
> > at winstone.HostGroup.initHost(HostGroup.java:66) 
> > at winstone.HostGroup.(HostGroup.java:45) 
> > at winstone.Launcher.(Launcher.java:145) 
> > at winstone.Launcher.main(Launcher.java:356) 
> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
> > at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 
>
> > at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>  
>
> > at java.lang.reflect.Method.invoke(Method.java:606) 
> > at Main._main(Main.java:307) 
> > at Main.main(Main.java:98) 
> > 
> > What else do I need to do to get Jenkins started? 
> > 
> > 
> > -- 
> > 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/f83e2f4c-e50f-4846-b9aa-f33e38e0790b%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/014e8e16-3051-46df-8ca4-6bc7da1a52fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Some Jenkins servers are down

2016-04-26 Thread Jiří Engelthaler
Confirmed by Jenkins team 
https://twitter.com/jenkinsci/status/724883801260843009

Dne úterý 26. dubna 2016 10:54:51 UTC+2 Jiří Engelthaler napsal(a):
>
> Not working servers - Connection timeout:
>
> http://archives.jenkins-ci.org
> https://wiki.jenkins-ci.org/
>
>

-- 
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/f56dde2a-d28e-49d7-b63f-5648635b4bda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Some Jenkins servers are down

2016-04-26 Thread Vani Paridhyani

https://updates.jenkins-ci.org this is down as well. Connecting from India.


On Tuesday, April 26, 2016 at 2:41:20 PM UTC+5:30, matthew...@diamond.ac.uk 
wrote:
>
> I see the same problem, connecting from the UK.
>
>  
>
> *From:* jenkins...@googlegroups.com  [mailto:
> jenkins...@googlegroups.com ] *On Behalf Of *Jirí Engelthaler
> *Sent:* 26 April 2016 09:55
> *To:* Jenkins Users
> *Subject:* Some Jenkins servers are down
>
>  
>
> Not working servers - Connection timeout:
>
> http://archives.jenkins-ci.org
> https://wiki.jenkins-ci.org/
>
>  
>
> -- 
>
> This e-mail and any attachments may contain confidential, copyright and or 
> privileged material, and are for the use of the intended addressee only. If 
> you are not the intended addressee or an authorised recipient of the 
> addressee please notify us of receipt by returning the e-mail and do not 
> use, copy, retain, distribute or disclose the information in or attached to 
> the e-mail.
> Any opinions expressed within this e-mail are those of the individual and 
> not necessarily of Diamond Light Source Ltd. 
> Diamond Light Source Ltd. cannot guarantee that this e-mail or any 
> attachments are free from viruses and we cannot accept liability for any 
> damage which you may sustain as a result of software viruses which may be 
> transmitted in or with the message.
> Diamond Light Source Limited (company no. 4375679). Registered in England 
> and Wales with its registered office at Diamond House, Harwell Science and 
> Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom
>  
>

-- 
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/ef1b83ef-a5da-4a14-aa78-2feaf4960f36%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: Some Jenkins servers are down

2016-04-26 Thread Matthew.Webber
I see the same problem, connecting from the UK.

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Jirí Engelthaler
Sent: 26 April 2016 09:55
To: Jenkins Users
Subject: Some Jenkins servers are down

Not working servers - Connection timeout:

http://archives.jenkins-ci.org
https://wiki.jenkins-ci.org/

-- 
This e-mail and any attachments may contain confidential, copyright and or 
privileged material, and are for the use of the intended addressee only. If you 
are not the intended addressee or an authorised recipient of the addressee 
please notify us of receipt by returning the e-mail and do not use, copy, 
retain, distribute or disclose the information in or attached to the e-mail.
Any opinions expressed within this e-mail are those of the individual and not 
necessarily of Diamond Light Source Ltd. 
Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments 
are free from viruses and we cannot accept liability for any damage which you 
may sustain as a result of software viruses which may be transmitted in or with 
the message.
Diamond Light Source Limited (company no. 4375679). Registered in England and 
Wales with its registered office at Diamond House, Harwell Science and 
Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom

-- 
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/6836E1DC2DDC174C9D64B7860E5AF5FCAC019F9A%40EXCHMBX01.fed.cclrc.ac.uk.
For more options, visit https://groups.google.com/d/optout.


Some Jenkins servers are down

2016-04-26 Thread Jiří Engelthaler
Not working servers - Connection timeout:

http://archives.jenkins-ci.org
https://wiki.jenkins-ci.org/

-- 
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/694f6a51-4196-4a67-b19a-5440e59741f2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins can't find existing artifacts

2016-04-26 Thread David Villasmil Govea
Hello all,

I finally found my problem. I had configured the job to do the git clone.
But for some reason I also added the cloning on the build steps... once i
removed that jenkins started getting the files properly.

I would still like to understand why this would happen...

Regards,

David


On Tue, Apr 26, 2016 at 9:30 AM Lionel Orellana  wrote:

> Or **/logfiles/*
>
> --
> 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/_6bHcXQ7EPQ/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/033fbba3-4ddb-4723-a4f6-13b1e0f1d313%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/CAPTi0gpD9GSNB7aCivzfVtdR3CxiOhPEi5oaim%3Ddd6N3Dz-aeg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Publish Over SSH Plugin(Parameterized publishing) cannot use with extend choice parameter plugins

2016-04-26 Thread Zhang Jonathan
Hi,
using extend choice parameter plugin, if select one item, it is success:
  SSH: Skipping [AIServer] - Label ["AIServer"] match expression 
["AIServer"]

  
   If select multi items, cannot match:
  SSH: Skipping [AIServer] - Label ["AIServer"] does not match 
expression ["TestServer","AIServer"]
  SSH: Skipping [TestServer] - Label ["TestServer"] does not 
match expression ["TestServer","AIServer"]


   any help would be appreciated, 


jonathan

-- 
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/3cdc1251-b7fc-4d09-ba9a-567a0d7f21ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins can't find existing artifacts

2016-04-26 Thread Lionel Orellana
Or **/logfiles/*

-- 
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/033fbba3-4ddb-4723-a4f6-13b1e0f1d313%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins can't find existing artifacts

2016-04-26 Thread bandi pavankumar reddy
Hi,

Try using **/*.log . may be this will help you.

On Monday, April 25, 2016 at 6:15:05 PM UTC+5:30, David Villasmil wrote:
>
> Hello Guys,
>
> I have a jenkins running a job, after which I want it to "archive 
> artifact", which is basically just get some files.
>
> The Job clones a github and when ran, it generates some log files which I 
> need. The patter is:
>
> logfiles/*
>
> I added a command to list the directory to make sure the files are there, 
> and indeed they are.
>
> + ls -la logfiles
> total 24
> drwxr-xr-x 2 root root 4096 Apr 22 23:23 .
> drwxr-xr-x 8 root root 4096 Apr 22 23:23 ..
> -rw-r--r-- 1 root root0 Apr 22 23:23 1461367410777_testuuid_61746144-
> 3A3A--4944-3D5343414C41.log
> -rw-r--r-- 1 root root 1248 Apr 22 23:23 1461367410777_testuuid_61746144-
> 3A3A--4944-3D5343414C41_shortmsg.csv
> -rw-r--r-- 1 root root 2521 Apr 22 23:23 1461367410777_testuuid_61746144-
> 3A3A--4944-3D5343414C41_stats.log
> -rw-r--r-- 1 root root 8035 Apr 22 23:23 1461367410777_testuuid_61746144-
> 3A3A--4944-3D5343414C41_trace_msg.log
> Archiving artifacts
> ERROR: No artifacts found that match the file pattern "logfiles/*". 
> Configuration error?
> ERROR: ‘logfiles/*’ doesn’t match anything, but ‘*’ does. Perhaps that’s 
> what you mean?
> Build step 'Archive the artifacts' changed build result to FAILURE
>
>
> I don't really understand why they are not found.
>
> I have tried many different patterns, like "**/logfiles/*.log", 
>  "**/logfiles/*.*",  "**/logfiles/*",  and even asking specifically for the 
> file like 
> "logfiles/1461367410777_testuuid_61746144-3A3A--4944-3D5343414C41_shortmsg.csv"
> Always same result.
>
> Can any one help?
>
> Regards,
>
> David
>

-- 
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/9fd93dfb-db65-4401-9d5e-ec9dd759386f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.