0
votes
1answer
32 views

Groovy Compilation error :Unrecognized Windows Sockets error

Environment : Jenkins Server (Linux) Senkins slave agent (Windows ) Build :Gradle Project : EasyB ,Selenium,Groovy I am getting a compilation error while trying to compile my easyB + selenium ...
0
votes
0answers
37 views

How to get list of changed files since last build in Jenkins/Hudson with git/gerrit

Is there any mechanism I can get the changes between two builds in Jenkins in git/gerrit environment, I am getting all changes using all changes plugin, but I want get a nice set of change between ...
0
votes
0answers
22 views

Can the Groovy library for Jenkins be changed?

I am using the soapUI maven in Jenkins (am at the latest and greatest release) There seems to be an issue with the groovy 1.8.5 which is fixed in the later versions of Groovy (2.1.5 for example). Is ...
0
votes
1answer
25 views

Groovy: Antbuilder fileset is not created (launched from Jenkins)

I have following code in my script: def ant_fs = (new AntBuilder()) def fs = ant_fs.fileset( dir: <path> ) fs.each{ println( "Fileset item: $it" ) } When I launch it from Maven (mvn ... ...
1
vote
0answers
21 views

Jenkins - trigger chain of builds with job names as parameter

I want some experienced advice here... I want to accept as a parameter a list of job names (comma or space delimited string). Jenkins needs to build them as a chain, one after the other, in the ...
0
votes
0answers
32 views

How create and configure a new Jenkins Job using groovy?

There are a lot of examples of groovy scripts (http://scriptlerweb.appspot.com/catalog/list) no no example of new job creation.
0
votes
1answer
34 views

Tutorial on pushing to Heroku via Jenkins

All anyone know any good articles on getting Jenkins to play nicely with Heroku? What I want to do: 1) Want to setup a jenkins job to poll a private GitHub Repo when checkin's are made to ...
0
votes
2answers
56 views

Is it possible to use Jenkins server to run custom tasks one by one?

Is it possible to use Jenkins server to run custom tasks one by one? By task I mean to execute an external groovy program which designed as an independent performance and integration test for ...
1
vote
1answer
129 views

Jenkins matrix project combination filter - how to configure the groovy expression?

I have a Jenkins multi configuration project with two axis: sbBrowser with values firefox ie chrome envConfig with values pp1 pp2 pp3 staging systemtest I have to create combination filer to run ...
0
votes
1answer
434 views

groovy.lang.MissingPropertyException: No such property: manager for class: Script1

I am trying to invoke Groovy inside Hudson (using groovy plugin) to get some properties for our build. But I am getting this exception: groovy.lang.MissingPropertyException: No such property: manager ...
0
votes
0answers
112 views

Jenkins dynamically list git branches using groovy [closed]

I am trying to use the following plugin to dynamically generate the list of available git branches in jenkins. https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Dynamic+Parameter+Plug-in But the ...
0
votes
1answer
59 views

Allow running some jobs when Jenkins/Hudson is in shutdown mode

Normally, selecting "Prepare for Shutdown" under "Manage Jenkins" prevents new jobs from being started (and I guess it's identical behavior under Hudson). Now I'd like to run some maintenance jobs ...
1
vote
1answer
209 views

How to call batch/groovy script located in jenkins slave from “Execute system Groovy script”?

Problem: I have a groovy script using which I get list of SVN change set. I execute this on Execute system Groovy script, because I has access to Hudson objects that helps me getting change set. ...
0
votes
0answers
208 views

Execute Groovy script within a Jenkins slave from the Master console

I want to run a batch or shell script inside an arbitrary set of Jenkins slaves. I came with the code below which doesn't work from the Master Script console. It fails in the executeGroovy line ...
0
votes
2answers
521 views

Running groovy script on Jenkins

I have installed the scripter plugin on Jenkins 1.501: https://wiki.jenkins-ci.org/display/JENKINS/Scriptler+Plugin I have created this script: import org.apache.commons.httpclient.* import ...
0
votes
1answer
428 views

Get Jenkins upstream jobs

I would like to get all the upstream jobs, just like in the console output: Started by upstream project "allocate" build number 31 originally caused by: Started by upstream project "start" build ...
0
votes
0answers
222 views

Firefox driver jenkins

I have problem with test on jenkins/ go to create new company(CBNPortalRegNewCompSpec) Time elapsed: 2.365 sec <<< ERROR! org.openqa.selenium.NoSuchElementException: Unable to locate ...
1
vote
0answers
58 views

Using CodeNarc with Maven

I am trying to integrate CodeNarc with a Maven-based Groovy project. The documentation on the site for the CodeNarc Maven plugin is minimal. The usage aspects I am trying to understand are: How to ...
-1
votes
2answers
97 views

How to use filter domains with jenkins email-ext plugin?

Currently my Jenkins instance sends emails to committers (in case of failing builds). I wish to use the email-ext plugin and write a groovy script that will only send an email in case the commit ...
1
vote
1answer
37 views

Update the DependencyGraph programmatically in Jenkins

I would like to update the DependencyGraph in Jenkins. Some part of the code: def pl = z.getPublishersList() for(w in pl){ def bt = ...
1
vote
1answer
336 views

Error Executing Script when building with the Grails Jenkins plugin?

When trying to do a compile of a simple Grails 2.1 application with Jenkins I am getting a failure with the for the following reason: Error Error executing script Compile: startup failed: ...
2
votes
1answer
364 views

Jenkins - Dynamic Choice Parameter - Removing File extension from list

I am having a bit of trouble getting my groovy code to work properly in Jenkins using the Dynamic choice parameter. We currently have a folder that contains a lot of properties files for various ...
0
votes
1answer
141 views

Setting an upstreamproject in Jenkins using groovy

I would like to copy a FreeStyleProject to a new job and then set a new upstreamproject to this new job using groovy. I can't find any method on Class FreeStyleProject that let me do that: set a new ...
1
vote
2answers
467 views

Passing build parameters downstream using groovy. Jenkins build pipeline

I've seen a number of examples that execute a pre build system groovy script to the effect of import hudson.model.* def thr = Thread.currentThread() def build = thr?.executable printf "Setting ...
1
vote
0answers
230 views

Sending Cppcheck result/report on email from Jenkins using email-ext plugin

I'm trying to send cppcheck report on an email using email-ext plugin from a Jenkins build. So far, only way seems to be by creating a custom template -- jelly or groovy. From this post -- "Can I ...
0
votes
1answer
88 views

List all downstreams project for a project in jenkins

This must be a simple rookie mistake but def hi = hudson.model.Hudson.instance hi.getItems(hudson.model.Project).each {project -> println(project.displayName) def di = ...
-1
votes
1answer
108 views

How to learn Groovy [closed]

Hi i am a Build and Release engineer and work extensively with jenkins, now there comes situtations where i need to customize lot of things according to the requirement of my project. I have never ...
1
vote
1answer
193 views

Groovy code throwing error on jenkins

hi i have added the following groovy code in the Post-build Actions of jenkins. import java.util.* import hudson.model.* upstreamBuilds = manager.build.getUpstreamBuilds(); upstreamJob = ...
-1
votes
1answer
194 views

Groovy script error on jenkins

hi i am new to groovy. I am using jenkins to do my build, now my requirement is to capture the build result e.g (Success/Unstable.Failure) and print it on the subject line of my build email. I have ...
0
votes
0answers
152 views

Jenkins Artifactory Plugin Configuration

Currently i'm trying to change the configuration of the Jenkins Artifactory Plugin via the jenkins scriptler Currently i can't find a solution to access the configuration of the Jenkins Artifactory ...
1
vote
1answer
128 views

Track execution time per task in gradle script?

What is the most elegant way to track the execution times on how long a task took in a gradle build script? In an optimal case log the time directly same or next line to the task name ...
0
votes
1answer
150 views

Use jenkins subversion credential in my groovy script

As part of the build process, I need to check in a file after changing it. This I can do it with a groovy script but I have to put the username password in the script. I want to try and avoid it if ...
0
votes
1answer
262 views

Groovy Postbuild Script Jenkins - Kill Process

I'm trying to kill all ruby processes before starting a new one in a Groovy postbuild script in Jenkins. It looks like that def command_kill = "kill -9 `pidof ruby`" def proc_kill = ...
0
votes
0answers
336 views

In Jenkins groovy postbuild manager.build.project.getName() does not give project name on multiconfiguration builds

I have a groovy script where I have a variable String jobName = manager.build.project.getName() This is used to get a file in a path in the workspace eg "/var/lib/jenkins/workspace/'jobName'/.." ...
0
votes
1answer
250 views

jenkins groovy script check if build is tagged

In groovy how to check if a particular build is tagged? I'm using this information to mark the build "Keep forever". I'm using this script to get builds of a particular job: ...
0
votes
1answer
507 views

Pre send script in groovy for jenkins

i have two dependent jobs. i need help for groovy script in jenkins, for writing pre send script for email-ext plugin. i want to check whether buid reason is upstream cause, then set cancel ...
2
votes
1answer
351 views

Moving from plain Groovy to Gradle

I have a working little application made in Groovy. At the moment I can test it on the command line, but I need to integrate it with a Jenkins server. Hence I have thought to integrate it with Gradle ...
0
votes
1answer
591 views

How to make prestep system groovy script to interrupt jenkins build and set it to SUCCESS?

Say I have a maven2/3 project in jenkins/hudson and BEFORE I run some goals on a maven project configured in the correspoing config.xml file, I want to run a system groovy script (ref. system groovy ...
3
votes
2answers
3k views

jenkins script console: list of available jenkins methods?

I would like do use the jenkins script console some more. Where do i have to look for a list of available Objects/Methods that i can use via groovy? Is there something online? Should i browse the ...
1
vote
1answer
286 views

How can use Groovy Postbuild Plugin to write on the project/job main page?

I am using Groovy Postbuild Plugin, and use it to display different info from build logs. But is there any way to write the same info on project page, not the build page? I mean, BUILD PAGE: ...
0
votes
2answers
2k views

How to retrieve Jenkins build parameters using the Groovy API?

I have a parameterized job that uses the Perforce plugin and would like to retrieve the build parameters/properties as well as the p4.change property that's set by the Perforce plugin. How do I ...
0
votes
1answer
741 views

Accessing a Jenkins plugin package from a Groovy script

How can I find the path to a Jenkins plugin if I want to use it from a groovy script? For example, just testing on the master, I'd like to be able to use the LabelParameterValue class from the ...
0
votes
1answer
2k views

How to submit Jenkins job via REST API?

The following 'Execute system Groovy script' Build Task updates the build's description to add a button that will submit another Jenkins job which is parameterized: import hudson.model.Cause import ...
2
votes
1answer
2k views

How to make a Jenkins/Hudson job surveil some others jobs and decide whether to build or not?

PROBLEM Given that all the jobs have string LEVEL_X in it's job name, where X is a number > 1. I want every job with X = n to surveil every job with X = n-1, and start building if each of them is ...
0
votes
0answers
742 views

Example of groovy template to use the email-ext plugin in Jenkins with TFS

I have scoured the internet for the past day trying to find a useful example, or documentation for how to integrate groovy with TFS when creating an email template for Jenkins / Hudson. I have come ...
0
votes
2answers
3k views

Creating a Jenkins environment variable using Groovy

I think this is another simple question but I couldn't get any of the web solutions to work. My project takes in a version number. Each number can be separated by a '.' or a '_'. I want a variable ...
1
vote
1answer
891 views

Accessing Variables Specified for Jenkins Groovy Plugin Script

When writing a script that is run by Jenkins Groovy Plugin as a build step (Execute System Groovy Script) one can specify 'variable bindings'. The helpline says: Define varibale bingings (in the ...
0
votes
1answer
347 views

Jenkins - MavenBuild.getMavenArtifacts() Returns Null

Since Jenkins 1.460, calling getMavenArtifacts() on an instance of MavenBuild is returning null, whereas previously that would work fine. Have there been breaking changes in the Jenkins API, or is ...
1
vote
1answer
803 views

Jenkins Packages on Groovy Classpath?

When using the Groovy Jenkins plugin (not the Groovy Post Build Plugin, which is a different thing) as a Post Step, I can't resolve classes in the hudson.model package. Do I need to add the Jenkins ...
1
vote
1answer
1k views

Where are the instance variables coming from on the email-ext jelly/groovy scripts?

The templates and examples provided by the email-ext plugin on jenkins reference variables such as build, root, it, etc.... Where are these variables coming from and where is the documentation on ...

1 2