Re: Copy files from multiple downstream jobs

2014-09-12 Thread anthony
I researched this years ago and couldn't find a viable solution. Rather than pulling artifacts from downstream jobs I opted to push them by specifying a parameter with the output directory path. In my case, the jobs are all building with Ant. The parent job would build, then call on the other j

Scaling question - 1500 jobs a night?

2020-04-28 Thread Anthony Wesley
guess is that this is well within Jenkins' limits and we are managing our workspaces with good hygiene. A year from now, however, I will have ran half a million Jenkins jobs. Any thoughts on that? Thank you very kindly, Anthony Wesley -- You received this message because you are subscrib

Automating Jenkins with Rerun

2012-11-27 Thread Anthony Shortland
ns:remove command *really* *does* blow-away Jenkins as easily and automatically as jenkins:deploy sets it up ... so be careful out there! Anthony Shortland.

Re: unit testing from shell scripts?

2012-12-07 Thread Anthony Shortland
Hi Bill, Are you aware of Rerun (http://rerun.github.com/rerun) and its ability to formally manage shell script test cases? Anthony. Sent from my iPhone On Dec 7, 2012, at 7:48 AM, Bill Trost wrote: > Hi, > > I need to run a set of unit tests that simply consist of seeing if &g

SSH plugin "Can't connect to server" problem

2012-02-22 Thread Anthony Ho
server or in the hosts which I cannot connect to? I have no problems running ssh as root user to any of these hosts from the system hosting Jenkins and running as user “jenkins”. Thank you for your help. --Anthony

Re: SSH plugin "Can't connect to server" problem

2012-02-22 Thread Anthony Ho
Brian, I found the solution. Thanks. The solution is to add (uncomment) the line "PasswordAuthentication yes" in /etc/ssh/sshd_config file of the ESXi server. Thanks, --Anthony On Wed, Feb 22, 2012 at 1:28 PM, Brian J wrote: > It's usually best in this case to check

long output = slow build times

2012-05-22 Thread Anthony Newnam
I believe that with some of my compile jobs that have large output (~50MB) of data, it causes them to be much slower. I haven't measured this exactly to find the cause, but it seems like there is a strong correlation. Have other seen this behavior or are there any optimizations available for it

save build meta-data/logs longer than archives

2012-05-23 Thread Anthony Newnam
Is there any way (plugin/option) that I can use to save the meta-data and logs of a build job without saving the artifacts? Each of the builds stores almost 1GB of artifacts for 10 days, and I don't have enough space to store hundreds of days worth, but I would like to keep the logs around. I wo

Re: save build meta-data/logs longer than archives

2012-05-23 Thread Anthony Newnam
There is an advanced button that will let you set the same items for > the artifacts. > > I believe the warning counts are stored separately to these artifacts, so > these are kept as part of the build log data. > > Chris > > > On Wednesday, 23 May 2012 14:53:41 UTC

more graphs from junit tests?

2012-05-23 Thread Anthony Newnam
Is there a way for me to get a graph with time as the x axis instead of build number and see a graph of how long the tests took/how long an individual test took over time? It seems like the only way the graphs could be useful if they're over a very long period to indicate how your software is p

Re: more graphs from junit tests?

2012-05-24 Thread Anthony Newnam
On Thursday, May 24, 2012 3:30:55 AM UTC-5, Ulli Hafner wrote: > > On 05/23/2012 11:23 PM, Anthony Newnam wrote: > > Is there a way for me to get a graph with time as the x axis instead > > of build number and see a graph of how long the tests took/how long an > > indivi

Exception when executing the batch command : null

2012-05-24 Thread Anthony Newnam
I am getting the error: *02:47:06* Exception when executing the batch command : null Sometimes when trying to run a post build task. Have others seen this? It seems there is an exception without a message in it (https://svn.jenkins-ci.org/trunk/hudson/plugins/postbuild-task/src/main/java/hudso

Injecting environmental variables in build thats uses NodeJS Plugin

2017-11-29 Thread Anthony Green
for NodeJS to pick up the environment variable ? TIA Anthony -- 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...@googlegro

Re: System testing across multiple crossplatform slaves/nodes?

2017-08-07 Thread Anthony Rabaa
Have you considered assigning labels to the nodes? node(“Windows”) { // Do some work. } node(“Linux”) { // Do some other work. } From: on behalf of Alexander Moriarty Reply-To: "jenkinsci-users@googlegroups.com" Date: Friday, August 4, 2017 at 9:08 AM To: Jenkins Users Subject: Syst

Jenkins Workspace

2016-09-08 Thread Anthony Talak
Hi everyone, I'm wondering where on the server Jenkins would store the default workspace. I would assume it should be under Jenkins/jobs/[jobname]/builds/[buildnumber] but mine keeps getting stored at Jenkins/jobs/[jobname] and gets overwritten every time. Is this correct? Thanks, An

Jenkins CLI not working OSX

2015-06-22 Thread Anthony Green
Steps to reproduce 1. Install Jenkins via Homebrew 2. Download jenkins-cli.jar - 3. run java -jar jenkins-cli.jar -s http://localhost:8080/ help response: Enter passphrase for /Users/jenkins/.ssh/id_rsa: Exception in thread "main" java.io.IOException: There's no Jenkins running at http://

Re: Jenkins CLI not working OSX

2015-06-22 Thread Anthony Green
On Monday, 22 June 2015 10:14:55 UTC+1, Richard Bywater wrote: > > I assume Jenkins has been started? (Not sure if downloading via Homebrew > automatically starts it) > > Richard > Jenkins is running, responding 200 to http requests -- You received this message because you are subscribed to th

Fixing TCP port for JNLP slave agents from command line

2015-06-25 Thread Anthony Green
Is it possible to fix the TCP port for JNLP slave agents from command line? I'm trying to automated the installation and configuration of Jenkins, in a Docker container, via Ansible and am trying to use the Jenkins CLI to install the job-dsl plugin. -- You received this message because you are

Re: Fixing TCP port for JNLP slave agents from command line

2015-06-25 Thread Anthony Green
On Thursday, 25 June 2015 10:14:56 UTC+1, Vincent Latombe wrote: > > Hi, > > this can be configured under Manage Jenkins > Configure global security. > > Vincent > That's not from the command line. Can it be done via the CLI or with curl as a POST request? Has anyone scripted it? -- You rec

Re: Fixing TCP port for JNLP slave agents from command line

2015-06-25 Thread Anthony Green
On Thursday, 25 June 2015 12:03:30 UTC+1, Anthony Green wrote: > > Can it be done via the CLI or with curl as a POST request? > I've experimented with a POST request curl -X POST -d '.useSecurity=on&slaveAgentPort.type=fixed&value=2230&core%3Aapply=true&a

Re: Jenkins-cli never respond

2015-06-25 Thread Anthony Green
On Wednesday, 24 June 2015 10:38:05 UTC+1, Richard Bywater wrote: > > The CLI doesn't use the JNLP port - you need to point it at the normal web > port (e.g. 8080) >> >> >> Are you sure? What I've read regarding setting up Jenkins in a Docker suggests that's exactly what it uses. -- You recei

Re: Jenkins-cli never respond

2015-06-26 Thread Anthony Green
> > > Everybody is right :) The CLI client automatically discovers the JNLP > port and communicates via that. So, as Richard mentions, you don't need > to know the JNLP port — you just provide the regular Jenkins web URL > when running the CLI client command. > Except perhaps your container

Tool locations dropdown empty

2015-07-20 Thread Anthony Green
I want to customise the tool locations of my Jenkins Slaves However when I click add to the List of tool locations the 'Name' dropdown menu is empty. Is this a bug or is the a pre-step I've missed out? -- You received this message because you are subscribed to the Google Groups "Jenkins Users

Re: Tool locations dropdown empty

2015-07-20 Thread Anthony Green
On Monday, 20 July 2015 14:26:10 UTC+1, Daniel Beck wrote: > > You need to configure tools first in Manage Jenkins » Configure Jenkins. > > That dropdown is also empty -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this g

Invoking top-level Maven targets on a slave

2015-07-21 Thread Anthony Green
I''m running a Jenkins Ubuntu Master with an OS X Slave I can't get a build step "Invoking top-level Maven targets" to run on a slave. I get a FATAL: command execution failed java.io.IOException : Cannot run program "mvn" I

Re: Invoking top-level Maven targets on a slave

2015-07-22 Thread Anthony Green
On Tuesday, 21 July 2015 13:21:37 UTC+1, Anthony Green wrote: > > I''m running a Jenkins Ubuntu Master with an OS X Slave > > I can't get a build step "Invoking top-level Maven targets" to run on a > slave. > > I get a > > FATAL: comma

Jenkins Git Plugin showing Unknown user for all recent changes

2015-08-17 Thread Anthony Hunter
users from the GIT repositories were correctly brought down, I can see the Userid and name from GIT. Is there some way to fix this issue? I do not want the Git Plugin to use anything from LDAP. Cheers... Anthony -- You received this message because you are subscribed to the Google Groups

Adding User permissions with groovy

2015-08-20 Thread Anthony Green
Has anyone managed to script the authorisation levels of a user with Groovy? I have the beginnings of a script: import jenkins.model.* import hudson.security.* def instance = Jenkins.getInstance() def hudsonRealm = new HudsonPrivateSecurityRealm(false) instance.setSecurityRealm(hudsonRealm) hu

Re: Adding User permissions with groovy

2015-08-20 Thread Anthony Green
This was my solution import jenkins.model.* import hudson.security.* def instance = Jenkins.getInstance() def strategy = new GlobalMatrixAuthorizationStrategy() strategy.add(Jenkins.ADMINISTER, "foo") strategy.add(Jenkins.READ, 'baz') strategy.add(Item.DISCOVER, 'baz') strategy.a

Re: Adding User permissions with groovy

2015-08-20 Thread Anthony Green
On Thursday, 20 August 2015 13:47:05 UTC+1, Anthony Green wrote: > > This was my solution > > import jenkins.model.* > import hudson.security.* > > def instance = Jenkins.getInstance() > > def strategy = new GlobalMatrixAuthorizationStrategy() > strateg

Re: Jenkins Git Plugin showing Unknown user for all recent changes

2015-08-24 Thread Anthony Hunter
This is definitely a problem with the Git Plugin to use LDAP to lookup user information about commits. We need to stop this from occurring. Git Plugin should not lookup anything from the global security. Know how to do this? Any ideas? -- You received this message because you are subscribed to

Certificate Credentials Binding: How to use

2019-04-30 Thread anthony . charles . green
ect a certificate from Jenkins Credentials Store. I'm trying to test its use with a simple execute shell build step that calls curl on an API that requires you to present a certificate. Advice? TIA Anthony -- You received this message because you are subscribed to the Google Groups "Jenkins U

Re: Plugins are not updating

2012-04-03 Thread طلال Anthony رابعة
Good morning! Doesn't seem to be fixed. I tried updating the CVS Plugin from 1.6 to 2.2 and the Translation Assistance Plugin from 1.8 to 1.9. Both registered as upgraded but it wasn't reflected on restart. Cheers! Anthony On 2012-04-03, at 3:07 AM, miktap wrote: > I think

Re: Is it possible to parameterize a Subversion "Repository URL" location in a Jenkins build job configuration?

2012-04-24 Thread طلال Anthony رابعة
er is defaulted to trunk in each child job. Anthony On 2012-04-24, at 9:46 AM, Linley wrote: > Hi, > > We have a SVN structure that consists of a main "parent" directory > which has sub-folders for each deployable project (which happen to be > Maven Java projects).

Re: Nabaztag

2012-04-27 Thread طلال Anthony رابعة
Dude, when you're done that please send me the script. I want to put that on my Jenkins server and have it play when a build fails! Anthony On 2012-04-27, at 10:22 AM, Wieschhoff, Kenneth wrote: > I could set it up to play an MP3 of a train horn with all lights blinking red > a

Re: Using CopyArtifacts Plugin for Parameterized Projects

2012-05-31 Thread طلال Anthony رابعة
I was trying to do a similar thing but the copy artifact plugin wasn't working for me. Instead I pass in the URL of the artifacts for the job I'm promoting and use curl to retrieve it. Works like a charm. :-) Anthony On 2012-05-24, at 2:02 PM, Bob Dixon wrote: > I'm

Build Name Setter Plugin

2012-06-11 Thread طلال Anthony رابعة
Hello! Could I set the value of a build name to a parameter passed in? I'm using the parameterized trigger plugin to call other jobs and it'd be nice to simply use one of those parameters directly. Cheers! Anthony

Re: Build Name Setter Plugin

2012-06-11 Thread طلال Anthony رابعة
Awesome, thanks for the info! Anthony On 2012-06-11, at 8:58 AM, cjo wrote: > Yes the build name setter does support this. > > > I just leave the Regular expression empty, so all builds get a name, and then > set the Description as one of the parameters passed in. > Tho

Re: jenkins_1.469_all.deb missing!

2012-06-11 Thread طلال Anthony رابعة
The auto-updater is also failing. It can't resolve the URL to the latest version. Anthony On 2012-06-11, at 8:59 AM, Sebastián Zaffarano wrote: > I've the same problem: > > E: Fallo al renombrar > http://pkg.jenkins-ci.org/debian/binary/jenkins_1.469_all.deb: &g

Setting Build ID with Promote

2012-06-19 Thread طلال Anthony رابعة
Hello! I have the set build name and promote plugins installed. However, it seems I don't have the action option to set the build name in promote. Can anybody recommend other strategies I could use to set it? I'd like it to only be set when a promote has occurred. Cheers! Anthony

Promote Plugin Configuration

2012-06-28 Thread طلال Anthony رابعة
ng to copy? Cheers! Anthony

1.476 & Error 404

2012-08-01 Thread طلال Anthony رابعة
Hello, Anybody else getting 404'd when trying to download 1.476? Cheers! Anthony

Ubuntu's Java and Oracle's Java

2012-08-29 Thread طلال Anthony رابعة
nt for the job, however it appears that I'm incorrect. Instead, it looks like /usr/bin/java is being called instead. How can I get Jenkins to use $JAVA_HOME/bin/javac, from within Jenkins? Regards, T. Anthony Rabaa (طلال رابعة)

WarningsPublisher aborted due to exception

2012-09-04 Thread طلال Anthony رابعة
eBuild.run(FreeStyleBuild.java:46) at hudson.model.ResourceController.execute(ResourceController.java:88) at hudson.model.Executor.run(Executor.java:236) Regards, T. Anthony Rabaa (طلال رابعة)

Re: WarningsPublisher aborted due to exception

2012-09-04 Thread طلال Anthony رابعة
scheduled to be released? Cheers! Anthony On 2012-09-04, at 12:10 PM, Ulli Hafner wrote: > > On 09/04/2012 04:48 PM, طلال Anthony رابعة wrote: >> Good morning! >> >> Has anybody seen this error before? I've done a little Googling but haven't >> unco

Re: WarningsPublisher aborted due to exception

2012-09-04 Thread طلال Anthony رابعة
Ignore this. I see it's released. Thank you! Anthony On 2012-09-04, at 12:19 PM, طلال Anthony رابعة wrote: > You mean this ticket (to which you are the assignee I see :-])? If so, it's > similar (the stack trace that is) to mine but not the same. So far I've >

Re: Run A Script on Delete Project?

2014-09-17 Thread T. Anthony Rabaa
Create a job for deleting other jobs. I have a job that, for a specified tab will iterate over each job in it and delete all workspaces across the nodes for it. Then it deletes all the jobs, then the tab. You can build one to do database cleanup before deleting the job. > On Sep 15, 2014, at 6:

Re: Custom Views for Users

2014-10-14 Thread طلال Anthony رابعة
Yea... That's exactly what I was looking for. Right there in front of me and I totally missed it. ;-) Thanks! Anthony On Oct 14, 2014, at 8:02 PM, Richard Bywater wrote: > If they are logged in, they should be able to go to > /user//my-views and create new views under ther

Re: JOB_NAME not being passed correctly with Parametrized Trigger Plugin

2014-10-30 Thread T. Anthony Rabaa
If you're building on the same node, why not pass in the full path to the libraries as a parameter? > On Oct 27, 2014, at 11:04 AM, Adam Mercer wrote: > > Hi > > Anyone? Surely the plugin shouldn't be stripping information when > passing it on to downstream jobs? > > Cheers > > Adam > >> O

Re: is there plugin for following scenario

2014-10-31 Thread طلال Anthony رابعة
How about using a file parameter and the conditional build step to determine if a file was provided? If it wasn’t, you can fall back to using a default f

Re: Immediate Requirement || .Net Developers with javacsript@Jersey City, NJ

2015-01-19 Thread طلال Anthony رابعة
Any chance we can add this guy to a spam list? This isn’t the place for job postings… > On Jan 19, 2015, at 11:56 AM, Anurag Singh wrote: > > Please find the detailed job description mention below. > > It will be really appreciated if you can provide me your updated resume at > your earliest.

Re: Help with artifacts archiving

2012-07-27 Thread طلال Anthony-Peter-Thomas رابعة
gig). Cheers! Anthony On 2012-07-27, at 9:26 AM, Mauro Molinari wrote: > Hello, > I'm quite new to Jenkins and I need some help with archiving artifacts. > I have my project and I can build it correctly. > Then, in the project configuration I set: > > Promote builds

Re: Upload artifacts to DropBox/Google drive ?

2014-07-20 Thread طلال Anthony-Peter-Thomas رابعة
Install Dropbox on the Jenkins master and publish by copying to the appropriate Dropbox directory? > On Jul 20, 2014, at 1:21 PM, Kaido Kert wrote: > > Hi, > > Is there an existing way to get artifacts published on either GoogleDrive or > Dropbox ? > Amazon S3 buckets and GoogleStorage are th

Re: Cloud Connectivity with Private Network

2014-09-12 Thread طلال Anthony-Peter-Thomas رابعة
SSH reverse tunnel? > On Sep 10, 2014, at 9:22 AM, Sajith Balakrishnan > wrote: > > Hi All > > We have a private network. However our applications / build servers(slaves) > are hosted on a Cloud. > > We are trying to Orchestrate the build / testing process Using Jenkins which > has to resid

Re: Swing UI tests on Linux Slaves

2014-09-12 Thread طلال Anthony-Peter-Thomas رابعة
Same here, Xvfb works great. I believe there's a plugin to instantiate a new instance of Xvfb with each build but I haven't used it. I run a single instance of Xvfb on each slave because our tests can't be run in parallel. > On Sep 12, 2014, at 12:39 PM, Chanda Unmack wrote: > > > >> On Fri

Custom Views for Users

2014-10-14 Thread طلال Anthony-Peter-Thomas رابعة
Good evening, I've been searching for a way to let users create personal custom views in Jenkins. Couldn't find anything. Anybody have any pointers? Regards, T. Anthony Rabaa (طلال رابعة) -- You received this message because you are subscribed to the Google Groups "Jenki