Jenkins job output values

2016-04-28 Thread Alan Evangelista
it. Anything else? What is the standard way to do this? Regards, Alan Evangelista -- 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-user

Re: Jenkins build web UI inaccessible while build is executing

2016-03-29 Thread Alan Evangelista
en I fixed this bug, the issue stopped. Regards, Alan Evangelista -- 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...@googl

Jenkins build web UI inaccessible while build is executing

2016-03-28 Thread Alan Evangelista
if is is related, but also recently I started to receive "Please wait while Jenkins is getting ready to work" messages in Jenkins web UI, like if Jenkins was being restarted often. I use Jenkins version 1.629. Has anyone faced this problem before? Regards, Alan Evangelista -- Yo

Re: Running a Jenkins job from a shell script

2016-03-01 Thread Alan Evangelista
Jenkins user and user API token are not available via Jenkins env variables, the solution I found is to put this data in a file (always in same path) in each Jenkins slave and the script opens the file to get the data. Regards, Alan Evangelista -- You received this message because you are

Running a Jenkins job from a shell script

2016-03-01 Thread Alan Evangelista
I want to execute a Jenkins job run from a script, which is itself cloned from a git repo and called in a shell build step by another Jenkins job. I need a Jenkins user and Jenkins user API token to run a Jenkins job via its HTTP API. Is it possible to access the Jenkins user and user API token

Re: Synchronous REST API call to execute a job

2015-08-25 Thread Alan Evangelista
On 08/25/2015 05:31 AM, Daniel Beck wrote: On 25.08.2015, at 09:26, Alan Evangelista wrote: I tried to use the idea proposed in https://issues.jenkins-ci.org/browse/JENKINS-12827 , but Location header in HTTP response always point to job URL Did you follow the instructions on /job//api to

Synchronous REST API call to execute a job

2015-08-25 Thread Alan Evangelista
wrong? Regards, Alan Evangelista -- 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 discuss

Re: What Jenkins copies from slave to master when a build finishes?

2015-07-01 Thread Alan Evangelista
EP> The Jenkins book is correct, but the terminology can be misleading. Artifacts and build results will indeed be > stored on the Jenkins master. However, "build results" include only success/failure, console log, and other things > Jenkins and your plugins use to perform their function

Re: What Jenkins copies from slave to master when a build finishes?

2015-06-29 Thread Alan Evangelista
RG> Well I am not a Linux guy but is /srv/share a folder mapped to your Jenkins server? Then that would be a manual copy step. No, there is no NFS setup between master and server. RG> If /srv/share is a local folder on your slave, then I do not know how it is getting to your master. That's ind

Re: What Jenkins copies from slave to master when a build finishes?

2015-06-26 Thread Alan Evangelista
RG> By default, Jenkins copies no files from the slave to the master except the build log. You need to explicitly move files via Archive, Publish, Copy, etc Where is file copying/moving from slave to master setup? In the job configuration? - I only have a git clone, some string parameters an

What Jenkins copies from slave to master when a build finishes?

2015-06-26 Thread Alan Evangelista
Jenkins copies only files saved to a specific diretory (eg job workspace) or any file created by the build (even if outside the workspace)? My tests seem to point to the latter, but I do not know how Jenkins would know all files created by a build, if not restricted to a specific directory. --