Can't update plugin list "No signature block found"

2014-04-29 Thread Matthew.Webber
When I go to "Manage Jenkins" --> "Manage Plugins" --> "Advanced", and click "Check now", I get this message in the browser: No signature block found in downloadable 'hudson.tasks.Maven.MavenInstaller' I'm on Jenkins 1.557. Is anyone else seeing this, or is it a temporary network or serv

IOS app Build using git and test flight in jenkins

2014-04-29 Thread Sathis KuMar
I configured everything,Jenkin server run locally in mac..have shell command its run in terminal but not working in jenkins. This is the error m getting in console. Building in workspace /Users/administrator/.jenkins/jobs/IOS Build/workspace Fetching changes from the remote Git repository Fe

Re: IOS app Build using git and test flight in jenkins

2014-04-29 Thread Mark Waite
Usually that would mean that your computer does not have a program named "sh" in the PATH which Jenkins is using when it tries to run your commands. That could be because you need to install sh, or it could be because /bin or /usr/bin are not in your PATH. Mark Waite On Tue, Apr 29, 2014 at 5:1

Jenkins doesn't care that needed JDK is not configured on slave

2014-04-29 Thread karg
As we need a lot of manually installed tools, we decided to have strictly separated slaves and provide rather lots of labels to get each project built on the right slave. This works really good so far. Now we thought we could spare at least the label for the JDK, as Jenkins in a sense has all ne

Advice on how to have single job iterate over several different Config Specs?

2014-04-29 Thread Horton, Anne B
Jenkins masters, We are using the version of the clearcase plugin that supports having config specs in a file. So, what is the most advantageous way to configure Jenkins so to run a single Jenkins job over 3 different config specs? Thank you very much in advance, Anne -- You received this mes

Re: Advice on how to have single job iterate over several different Config Specs?

2014-04-29 Thread Vivekanand S V
Have you check https://wiki.jenkins-ci.org/display/JENKINS/Building+a+matrix+project ? That page also points to pages with more details. On Tue, Apr 29, 2014 at 5:56 PM, Horton, Anne B wrote: > Jenkins masters, > > We are using the version of the clearcase plugin that supports having > config s

Permission denied when executing shell script

2014-04-29 Thread Justinas Urbanavicius
I have a Master only server on Linux debian, it clones a local mercurial repository and then after the build jenkins tags version as "qa" with command: hg tag -f qa and should push the changes to the same local repository, but after executing hg push -f it fails with error permission denied:

Re: Permission denied when executing shell script

2014-04-29 Thread 'Kamal Ahmed' via Jenkins Users
Look at your .hg's for permissions After hg init .hg and .hg/store have 755 permission, so if you're not the owner of the repository, you won't be able to write there. You can read, but not write. hope this helps On Tuesday, April 29, 2014 8:51 AM, Justinas Urbanavicius wrote: I have a Ma

Re: IOS app Build using git and test flight in jenkins

2014-04-29 Thread Benjamin Lau
Actually it didn't find ts.sh... I'm assuming that's something that should be in your git repo's root directory. Ben On Tue, Apr 29, 2014 at 4:39 AM, Mark Waite wrote: > Usually that would mean that your computer does not have a program named > "sh" in the PATH which Jenkins is using when it tri

Re:Jenkins doesn't care that needed JDK is not configured on slave

2014-04-29 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
You are correct, the decision logic for choosing slaves only takes labels into account, it does not match up JDK requirements. You'll have to put the appropriate labels on your slaves as well. Rather than modifying the decision logic, though, a way to solve this problem would be for the configu

Re: Permission denied when executing shell script

2014-04-29 Thread Justinas Urbanavicius
They all have 2775 permissions: drwxrwsr-x 4 root www-data 4.0K Apr 29 16:17 .hg drwxrwsr-x 4 root www-data 4.0K Apr 29 15:34 store as 775 is set group writing should be permitted, and jenkins user should be able to write as hi is in www-data group: su jenkins groups nogroup www-data On

Archived files not found?

2014-04-29 Thread Paul Becotte
I set up a new build process that is a little different than what I've done before. It is building a linux kernel using the Yocto build system on a linux slave. Our master and previous slaves were all windows boxes. The job is set to archive a couple files as build artifacts. The console say

Re: CppTest plugin with Parasoft C++Test tool - Trend graph display nothing

2014-04-29 Thread Paul Becotte
That plugin only reports the results of static analysis, unit test and coverage results are ignored. On Monday, April 28, 2014 11:31:49 AM UTC-4, Jean-Baptiste MARTIN wrote: > > Hello, > > I'm using Jenkins (1.561) with Cpptest plugin (0.12) to display test > results from Parasoft C++Test too

Re: Archived files not found?

2014-04-29 Thread Les Mikesell
On Tue, Apr 29, 2014 at 9:11 AM, Paul Becotte wrote: > I set up a new build process that is a little different than what I've done > before. It is building a linux kernel using the Yocto build system on a > linux slave. Our master and previous slaves were all windows boxes. The > job is set to

Re: [SOLVED] Apache SSL Proxy Jenkins

2014-04-29 Thread Scott Hendrickson
Thanks Marius, good point. Fixed and fixed. On Mon, Apr 28, 2014 at 11:22 PM, Marius Gedminas wrote: > On Mon, Apr 28, 2014 at 05:56:00PM -0700, Scott Hendrickson wrote: >> I guess I prematurely marked this as [SOLVED]. Thank you for the >> feedback! I incorporated it and did some more testing of

Re: [SOLVED] Apache SSL Proxy Jenkins

2014-04-29 Thread Les Mikesell
On Tue, Apr 29, 2014 at 1:22 AM, Marius Gedminas wrote: > On Mon, Apr 28, 2014 at 05:56:00PM -0700, Scott Hendrickson wrote: >> I guess I prematurely marked this as [SOLVED]. Thank you for the >> feedback! I incorporated it and did some more testing of the >> configuration. Here's what I'm experie

Re: Jenkins doesn't care that needed JDK is not configured on slave

2014-04-29 Thread Jeff
Maybe this exists but I missed it, but I also wonder if there is a way to inject system environment variables on any node (master/slaves) so that things like OS name/family, architecture, OS distribution (e.g., 'Ubuntu 14.04 LTS'), etc. could be already available. Seems redundant to have to manual

Re: Jenkins doesn't care that needed JDK is not configured on slave

2014-04-29 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
Well, this requires that the slave be accessible, which would not be true for cloud slaves that are spawned on demand :-) It's an interesting idea, but there would need to be some sort of 'mapping' mechanism to take the raw strings from the slave's environment and turn them into suitable labels

Re: Jenkins doesn't care that needed JDK is not configured on slave

2014-04-29 Thread Mark Waite
The PlatformLabeler plugin has been a real help for some of those cases of OS and platform values, and it handles them automatically. On Tue, Apr 29, 2014 at 9:42 AM, Jeff wrote: > Maybe this exists but I missed it, but I also wonder if there is a way to > inject system environment variables on

Re: Job sometimes uses a workspace with appended "@2" although "Concurrent Builds" is disabled

2014-04-29 Thread Daniel Beck
On 29.04.2014, at 08:18, Dirk Heinrichs wrote: > Could you please elaborate what leads to this conclusion? jenkins-ci.org -> Changelog -> Community Ratings -> Bad weather. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

Re: Can't update plugin list "No signature block found"

2014-04-29 Thread Daniel Beck
On 29.04.2014, at 12:51, matthew.web...@diamond.ac.uk wrote: > Is anyone else seeing this, or is it a temporary network or server issue? I > haven't changed anything recently, and this used to work. Seems to be caused by this (Did you recently update Jenkins to 1.557+?): https://issues.jenkins

Jenkins master slave security

2014-04-29 Thread Zedd
Hi all, I understand that if a Jenkins master is compromised, then slaves are compromised. But I did not think that the reverse was true. However, I stumbled upon information on this page about Jenkins security where following is me

VSS plugin com4j

2014-04-29 Thread Shawn Cole
I am having a lot of trouble trying to get Jenkins to pull from Visual Source Safe. The problem is I am on a 64 bit system with 64 bit java, and the com4j dll that comes with the plugin is 32 bit. I keep getting this error: FATAL: D:\Jenkins\plugins\vss\WEB-INF\lib\com4j.dll: Can't load IA 32-b

Re: Archived files not found?

2014-04-29 Thread Paul Becotte
Apparently, you get a 0 byte file! This was the problem- thanks. On Tuesday, April 29, 2014 10:55:01 AM UTC-4, LesMikesell wrote: > > On Tue, Apr 29, 2014 at 9:11 AM, Paul Becotte > > > wrote: > > I set up a new build process that is a little different than what I've > done > > before. It i

how to use build keeper plugin?

2014-04-29 Thread Maneesh M P
Can anyone explain me how to use build keeper plugin ? Thanks, M -- 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.

Launch slave-agent from slave's computer from Brower: MaCfee blocked it

2014-04-29 Thread Lily Fu
Hi All, I am setting up another slave on a window’s computer (Windows Server 2008 R2 Standard) It has MaCfee installed; I installed java jre 7 update 55, and in Java Control Panel, added the jenkin’s master url to the list; However, I can’t launch the slave agent from the slave’s ie brower, L

Re: Jenkins master slave security

2014-04-29 Thread Stephen Connolly
On Tuesday, 29 April 2014, Zedd wrote: > Hi all, > > I understand that if a Jenkins master is compromised, then slaves are > compromised. But I did not think that the reverse was true. However, I > stumbled upon information on this page about Jenkins > security

Re: Launch slave-agent from slave's computer from Brower: MaCfee blocked it

2014-04-29 Thread Les Mikesell
On Tue, Apr 29, 2014 at 2:49 PM, Lily Fu wrote: > > > I am setting up another slave on a window’s computer (Windows Server 2008 > R2 Standard) > > It has MaCfee installed; > > I installed java jre 7 update 55, and in Java Control Panel, added the > jenkin’s master url to the list; > > However, I

Slave does not have access to computers on LAN

2014-04-29 Thread jayman777
On my slave machine, which is running Windows 7, I have a Python script that accesses folders on computers on the LAN. When I run this script manually on the slave machine from the command line it is able to access the computers on the LAN and their folders. My master machine, which is running

Re: Slave does not have access to computers on LAN

2014-04-29 Thread Scott Evans
My guess is that you're running the slave agent as a service and it doesn't have access to network resources. When you run it manually you're logged into the box and your account probably has network access privileges. Scott On Tue, Apr 29, 2014 at 3:14 PM, wrote: > On my slave machine, which

Folders Plugin: How to copy a job (via Groovy) into a Folder

2014-04-29 Thread Steve Roth
I'd like to use the Folders plugin to properly archive some runs, and expose them in a custom 'view'. I've been thinking I would copy the jobs and runs I care about to the custom Folder 'view', and that way they can be presented properly. The Job namespacing is really nice as well. That sai

Re: Launch slave-agent from slave's computer from Brower: MaCfee blocked it

2014-04-29 Thread Richard Bywater
(Assuming this is a corporate machine), best bet would be to talk to whomever administers your McAfee setup and ask them to disable that rule for that machine. Richard. On Wed, Apr 30, 2014 at 7:49 AM, Lily Fu wrote: > Hi All, > > > > I am setting up another slave on a window’s computer (Win

Re: Slave does not have access to computers on LAN

2014-04-29 Thread jayman777
Thanks Scott. I reconfigured the Jenkins Slave service to login as a specific user instead of as "Local System". Once I restarted the slave service things worked as I expected. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe fr

Re: Jenkins master slave security

2014-04-29 Thread Mani Azizzadeh
> Hey Stephen, Thank you for your answer, just some follow up questions. This setting that you are talking about, is it something that is turned on by default? What is the setting called? So if an attacker should get access to a slave, then he/she cannot just execute some arbitrary code or c

Re: maven plugin - how to obtain the jenkins user name

2014-04-29 Thread Mauro Flores
Thanks. Michael. A complementary question. Do I have to add the jar of this class "hudson.model.User" to my maven plugin jar? Or the classpath of jenkins is visible to the execution of my maven plugin? If I have to add, can you help how to define the dependency. If I do like below I lot of j

Re: Jenkins master slave security

2014-04-29 Thread Stephen Connolly
On Tuesday, 29 April 2014, Mani Azizzadeh wrote: > > Hey Stephen, > > > Thank you for your answer, just some follow up questions. This setting > that you are talking about, is it something that is turned on by default? > What is the setting called? > I can't recall exactly. Basically the master

Re: Jenkins master slave security

2014-04-29 Thread Stephen Connolly
Basically if you can't trust your build machines, you have some issues. If you can't trust the code you are building, you have worse issues. The current block on releasing the literate plugin is providing a good isolation for pull request builds so that drive-by pull requests on GitHub don't cras

Getting node labels through REST API

2014-04-29 Thread Klaus Schniedergers
Hi, is it possible to get node/slave labels through the REST API? I can get them through Groovy or within a plugin, but can't seem to find a way to get that information through the XML/JSON APIs (e.g. https://jenkins_host/computer/myslave/api/json?depth=4&pretty=true). -- You received this mess

unable to resolve class hudson.model.Job

2014-04-29 Thread Maneesh M P
I am trying to execute a Groovy script as build step, I am getting below error. Can anyone tell me how to resolve this ? var/lib/jenkins/jobs/abc/workspace/hudson905310450711762336.groovy: 4: unable to resolve class hudson.model.Job @ line 4, column 1. import hudson.model.Job; ^ /var/li

Re: Job sometimes uses a workspace with appended "@2" although "Concurrent Builds" is disabled

2014-04-29 Thread Dirk Heinrichs
Am 29.04.2014 18:39, schrieb Daniel Beck: > On 29.04.2014, at 08:18, Dirk Heinrichs wrote: > >> Could you please elaborate what leads to this conclusion? > jenkins-ci.org -> Changelog -> Community Ratings -> Bad weather. > Thanks, wasn't aware of this. :-) Bye... Dirk -- *Dirk Heinrichs*,