On 27.01.2014, at 03:33, Arnaud Héritier wrote:
> My instance is again broken this morning with a With Screen of the death
> I attached another dump and this time there is no reference to the project
> stats plugin (even if I didn't yet had the time to remove it) :
> https://issues.jenkins-ci
On 27.01.2014, at 17:27, zw wrote:
> Will hudson.model.WorkspaceCleanupThread.disabled=true stop all jobs'
> configuration to "clean workspace" if they are configured to do so ?
I'm not sure what you mean, so here's an what the property does:
This property only disables the periodic automatic
On 28.01.2014, at 09:23, Артур Игоревич Белоусов
wrote:
> limited functional Winstone servlet container
Since 1.535, Jenkins uses Jetty. Which explains the error you get.
> Expected a subype of interface org.eclipse.jetty.security.LoginService but
> got class com.external.winstone.realm.JDBC
Older versions of Jenkins used the exact name of the file you were uploading in
Plugin Manager » Advanced (JENKINS-4543). So if you were e.g. experimenting a
bit with different versions of that plugin, all from your Downloads folder
(where that's the duplicate naming strategy), this got mirrored
You probably have a plugin whose job config parts have a really long load time
for some reason.
While the job config page is loading, open http://(yourjenkins)/threadDump in
another window. Search for "Handling GET /job/(jobname)/configure". This will
tell you, what part of the code, and often,
You're on the wrong list. This is not a Jenkins issue.
Use double quotation marks.
On 28.01.2014, at 16:06, Robert Pohl wrote:
> Hi,
> I'm generating a text file with build info but it doesn't work :/
>
> Under Build -> Execute Shell, there is a line:
> echo 'BuildNumber: ${BUILD_NUMBER}, GIT
On 28.01.2014, at 22:45, Scott Evans wrote:
> 1. Is this expected behavior?
Yes.
> 3. If this is the expected response via the /api/xml call, is there any way I
> can use an api/xml call on a different url to get the names of the running
> jobs on each executor of the given nodename?
Quotin
ssful authentication even with correct credentials.
Here's some sample code for a plugin that does just that:
https://github.com/daniel-beck/jenkins-login-rate-limiter-plugin
Configuration is via system properties (there's no config UI), but otherwise,
it works just fine. Note that I do
Build flow uses Result.isBetterOrEqualTo, so it should suffice to
ignore(ABORTED) to effectively ignore everything.
On 31.01.2014, at 03:12, Irfan Sayed wrote:
> nope. getting following error. please suggest
>
> ERROR: Failed to run DSL Script
>
> groovy.lang.MissingMethodException
> : No sig
Please limit mailing list messages to severe issues. A glitch in the load
statistics doesn't qualify.
You're experiencing this on 1.480.x, which is obsolete since May 2013 when
1.509.1 was released. Nobody cares about that anymore.
On 03.02.2014, at 03:33, Hiteswar wrote:
> Hi
> At my Jenkins
When you go to the workspace browser in Jenkins, there's an empty text field
just above the file list.
Enter the pattern you used for email attachment there and click the arrow next
to it. Does the PDF file now show up in the file list? If not, the pattern
doesn't match the file in the workspac
Weird, I always thought that for jarsigner to output 'jar verified', the jar
I'm checking had to be signed.
On 16.02.2014, at 08:31, Yaniv Kaul wrote:
> Is it possible to publish hash of the new JARs, so at least I can somehow try
> and verify their integrity? Since it's not packaged in any si
This has nothing to do with Jenkins.
How do you get line breaks to appear in an HTML document?
On 16.02.2014, at 12:40, Brosh, Yossi wrote:
> Hi To all,
>
> I need to send the content of a file via Jenkins .
> When I used these pre-send Scripts lines:
> def reportPath = build.getWorkspace().
/threadDump will tell you what the threads are doing. Look for 'Handling GET'.
If you have large views (i.e. 500+ items actually shown), my guess is
Functions.getRelativeLinkTo(Item), which iterates over all items in the view
(requiring recomputation of what actually is part of the view) for eve
On 14.02.2014, at 20:38, Slide wrote:
> I'm interested to get some feedback on whether I should continue spending my
> time on Extended Email (email-ext), or if there is real interest in having a
> new emailing plugin that would be bundled with core that provided more
> features than Mailer,
Don't use the Active Directory plugin. You likely can configure the LDAP
plugin[1] to do the same job.
1: https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Plugin
On 21.02.2014, at 00:47, Andrew Sumner wrote:
> Nearly everything I do gives this error - any assistance will be greatefully
> acc
tree=builds will only retrieve the newest 100 builds since 1.485. Use
tree=allBuilds to get everything. It's hidden by default and only shows up with
depth=3 or higher (when querying a job).
On 21.02.2014, at 02:35, Christian Goetze
wrote:
> WHen I run /job//api/json?tree=builds[url], then I
I don't think there's a need to do so. It still works without any configuration
in a lot of cases. And configuration of the LDAP plugin can be annoying if you
know nothing about LDAP.
I've experienced a severe issue with AD a while back (essentially
JENKINS-16429; restarting Jenkins twice a wee
Sidebar Link plugin can do that.
https://wiki.jenkins-ci.org/display/JENKINS/Sidebar-Link+Plugin
On 25.02.2014, at 14:42, fatima zahra Anzour wrote:
> Hello everybody;
>
> can someone help me with this issue, i want to create a web application that
> uses Sonar's database in order to make an
What's new in 1.535 (2013/10/14)
* Split matrix authorization strategies into an independent plugin.
On 27.02.2014, at 02:03, Josh Santangelo wrote:
> I'm moving my Jenkins setup from using the internal database to using Active
> Directory. This change was surprisingly easy. I would also like t
-
> S T I M U L A N T
> Josh Santangelo, Technical Director
> P 206 737 5601 / HQ 415 255 7081 / T @stimulant
>
>
> On Wed, Feb 26, 2014 at 10:17 PM, Daniel Beck wrote:
> What's new in 1.535 (2013/10/14)
> * Split matrix authorization strategies into an independent
You can also use an SSH key for authentication with jenkins-cli.jar (configure
the key in the Jenkins user configuration), so if "environment" refers to
non-technical reasons, that would be an option.
Then there's the REST API. POST to /safeRestart to perform that action. For
authentication, us
The job starts before it issues the safe restart command (obviously), then it
finishes, then Jenkins restarts. I've tested this before posting.
On 28.02.2014, at 13:48, AndyB wrote:
> I suspect that the safe-restart waits for no jobs to be running (that's the
> whole point of it after all), so
In System Groovy build steps, this works:
---
hudson.model.queue.QueueTaskFuture build(String fullName) {
def p = jenkins.model.Jenkins.instance.getItemByFullName(fullName)
def thisR = Thread.currentThread().executable
def f = p.scheduleBuild2(p.quietPeriod, new
hudson.model.Cause.UpstreamCaus
Folder#createProjectFromXML(String,InputStream). It's from the
ModifiableTopLevelItemGroup interface that both Jenkins and Folder implement.
On 28.02.2014, at 17:18, Glenn V wrote:
> Hi,
>
> I'm using the scriptler plugin to write a groovy script using the Jenkins
> api, that will clone a set
Is it enabled?
On 28.02.2014, at 20:04, fabiancernota wrote:
>
>
> The Plugin is allready installed.
>
> -Fabian
>
> --
> 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, s
Could be https://issues.jenkins-ci.org/browse/JENKINS-21780
Are there a lot of files/folders in those directories?
On 04.03.2014, at 16:31, tmac22 wrote:
> We recently upgraded to v 1.522 and the navigating the workspaces takes ~1.5
> minutes to open a directory.
>
> Any ideas?
>
> --
> Y
It's prohibited by the "raw HTML" formatter policy (an obvious misnomer). Only
http/https and mailto protocols are currently allowed in href attributes.
You need a plugin that is more lenient with what is allowed. It should be
trivial to write one yourself (basically [1] without the line calling
You're running Jenkins behind a reverse proxy (Apache, nginx, ...) and Jenkins
takes so long to respond that the proxy gives up.
Increase the timeout.
On 05.03.2014, at 15:02, Adam Mercer wrote:
> Hi
>
> Access to a jobs workspace has always been slow for me but this
> morning it's timing out
If there are many directory entries in the particular directory you're viewing,
likely because of JENKINS-21780:
https://issues.jenkins-ci.org/browse/JENKINS-21780
On 05.03.2014, at 23:57, Adam Mercer wrote:
> On Wed, Mar 5, 2014 at 1:19 PM, Daniel Beck wrote:
>> You're run
Hi,
try with --auth-no-challenge. IIRC it depends on whether Jenkins is set up to
allow anonymous access whether this is required.
Regards,
Daniel
On 24.10.2012, at 14:19, David Mata Gorriz
wrote:
> Hi.
>
> I have problems with REST API for view manipulation. Every thing I send is
> forbi
Hi all,
it looks like something in the job data directory causes Jenkins to fail
connection to the LDAP server. How can I find out what job or build is
responsible?
---
We tried to move to LDAP authentication, which works well on other (newly
installed) Jenkins instances on the same and other
If it's just the job description on the build page, you could add the following
JS snippet to any of your job's parameter descriptions:
if(document.URL == "http://jenkins/job/jobname/build?delay=0sec";) {
new Ajax.Reque
Hi all,
I recently learned that when run on Linux, Jenkins uses symlinks to make builds
a bit more easily accessible on the file system.
lrwxrwxrwx 1 danielbeck danielbeck 19 Jun 10 19:24 1 ->
2012-06-10_19-24-57
lrwxrwxrwx 1 danielbeck danielbeck 19 Jun 10 19:25 2 ->
2012-06-10_19
Hi,
you could do one of the following:
1. Make one of the systems a slave node of the other, and assign jobs to
specific nodes. Then you can set up a simple downstream relationship between
jobs on different nodes.
2. You can trigger builds on the Y Jenkins system by sending an HTTP request to
Are you using EnvInject? There's an option to clear all environment variables a
node inherits.
https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin
> Some use cases
> • To remove inherited environment variables (PATH, ANT_HOME, ...) at
> node level (master/slave), available by def
Probably none of your real user accounts are in /etc/passwd, so you shouldn't
be surprised this user isn't either.
To access and change account information, use dscl, e.g.:
$ sudo dscl
> cd Local/Default/Users
> change jenkins UserShell /usr/bin/false /bin/bash
---
If you just want
It appears that the commit mostly fixes the issue of users that used to exist
in the directory. Which is definitely an issue, especially in larger
organizations, so I guess this change will be kept.
As a workaround in your case, it should be easy to modify your security realm
(LDAP Plugin?) to
Don't immediately call .get(), instead assign the Future returned from
scheduleBuild2 to a variable. Only .get() once you're willing to wait for the
build to complete.
On 09.03.2014, at 22:27, dev123 wrote:
> In a jenkins plugin I am writing I need to run 5 jobs in parallel. Currently
> I do
gt; myActions[i])
>
> But I still does not give me what I want.
>
>
> On Sunday, March 9, 2014 10:32:31 PM UTC+1, Daniel Beck wrote:
> Don't immediately call .get(), instead assign the Future returned from
> scheduleBuild2 to a variable. Only .get() once you're wi
Since you seem to be triggering multiple builds of the same project, did you
enable the project for parallel execution of multiple builds?
On 09.03.2014, at 23:21, Daniel Beck wrote:
> If you have the executors, the builds should run in parallel
--
You received this message because you
Don't run the job on the machine you need to disconnect. Instead, run it
somewhere else, and have the build script connect to the actual build/test
machine using e.g. SSH and run the commands from there.
On 08.03.2014, at 13:08, EK wrote:
> Hi ...
>
> I need to run a job which might cause sla
If Jenkins slaves disconnect, their builds are considered failed. So, a
possible solution would be to not actually run the build that can cause a
disconnect on a Jenkins slave.
Let's say your job involves running a Maven build.
Usually, you'd have a Maven build step, or a shell step with a comm
On 10.03.2014, at 20:58, Scott Evans wrote:
> changed environment variables
This is a variable Jenkins provides itself, not one received from the
environment (like PATH, HOSTNAME, etc.).
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To u
On 10.03.2014, at 21:21, Mark Waite wrote:
> If the operating system provides a package, and I want a newer version, and
> the packaging between the newer version and the Debian version are different
Can't you just replace the war file?
--
You received this message because you are subscrib
Use the 'Environment Injector' plugin. It allows you to load variable
definition from a (Java .properties) file into the job environment.
Example:
--
First build step: Windows batch command:
echo foo=bar > env.properties
Second build step: Inject environment variables:
Properties File Path: env.
Write a build script smart enough to do incremental builds, using e.g. file
modification times to determine what needs to be processed again.
The Java build tool Gradle has some support for that, for example.
On 12.03.2014, at 02:48, Chris Beech wrote:
> Hi all,
>
> Is there a way in Jenkins
On 12.03.2014, at 19:58, Chanda Norton wrote:
> [intro2] $ cleartool mkview -snapshot -tag cnorton_view.vws -vws
> null\cnorton_view.vws.vws view
> cleartool: Error: storage directory must be in UNC style (e.g.
> \\host\share\...)
It seems obvious that that one argument shouldn't start with '
On 12.03.2014, at 21:53, Ginga, Dick wrote:
> I am assuming that the jre folder contains a java runtime environment running
> on Windows.
Edit jenkins.xml to point to a different java.
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To un
Likely because list-jobs prints the display name, while get-job requires the
actual job name to be specified.
Another possibility is that folders are involved (but that'd require you to
query a specific view's items in get-jobs).
On 12.03.2014, at 09:46, k...@quipsy.de wrote:
> When I do list-
If possible, try to remove the period in the folder name (C:\.jenkins ->
C:\jenkins). I've seen programs on Windows fail to handle that successfully
before.
On 12.03.2014, at 11:11, k...@quipsy.de wrote:
> Using LTS 1.532.2 I have set up several slaves using JDK 7u11 and these
> worked well un
On 14.03.2014, at 21:28, Mark Waite wrote:
> You may want to double check if there is a setting in the Subversion tagging
> plugin which will allow it to tag even if the build is unstable.
No such luck:
https://github.com/jenkinsci/svn-tag-plugin/blob/master/src/main/java/hudson/plugins/svn_ta
On 14.03.2014, at 23:52, Markus KARG wrote:
> at
> hudson.os.windows.ManagedWindowsServiceLauncher.launch(ManagedWindowsServiceLauncher.java:233)
Since this appears to go through 'Let Jenkins control this Windows slave as a
Windows service', what happens when you launch and control the
On 15.03.2014, at 13:33, Markus KARG wrote:
> Update: I have manually downloaded and installed the very same JDKs at the
> same location without any problem. So it is definitively a bug in Jenkins.
Did you install them using the same silent install, suppress reboot, etc.
command line?
Is the
On 17.03.2014, at 00:50, Richard Lavoie wrote:
> But do we have for LTS or previous versions ?
Everything introduced later is (or should be) annotated with @since, see e.g.
http://javadoc.jenkins-ci.org/hudson/model/AbstractItem.html#getRelativeDisplayNameFrom%28hudson.model.ItemGroup%29
http:
Use this: H/10 7-19 * * 1-5
It's essentially parts of these two examples provided in the inline help pasted
together:
> # every fifteen minutes (perhaps at :07, :22, :37, :52)
> H/15 * * * *
> # once every two hours every weekday (perhaps at 10:38 AM, 12:38 PM, 2:38 PM,
> 4:38 PM)
> H 9-16/2 * *
Subversion Tagging Plugin reuses the Subversion SCM authentication of the
project. And Subversion plugin 2.0 changed a lot about that.
There's a chance you just need to add an 'Additional Credential' for the repo.
It's essentially the same problem as in JENKINS-21785 [1]. Read all the
comments
On 19.03.2014, at 21:38, Daniel Beck wrote:
> Unfortunately, from reading the code, it looks more like
> SubversionSCM.DescriptorImpl.createAuthenticationProvider(AbstractProject)
> would need to pass the project's Su
On 20.03.2014, at 17:05, Dennis Jacobfeuerborn
wrote:
> I just installed a fresh Jenkins behind Apache httpd and while Jenkins is
> available it tells me "It appears that your reverse proxy set up is broken."
> but I don't know why.
Does the error message show up after you access 'Manage Jen
The link is wrong. You used the component 'reverse-proxy-auth' (likely
correct), while the link points to a report using 'reverse-proxy-auth-plugin'.
Try this one:
https://issues.jenkins-ci.org/secure/IssueNavigator.jspa?mode=hide&reset=true&jqlQuery=project+%3D+JENKINS+AND+status+in+(Open%2C+"I
Assuming all your build artifacts are archived in Jenkins, the easiest solution
is probably another job that copies them over using Copy Artifact plugin to do
some work. There's also a build selector parameter type you could use to
determine which build of the original job to copy from.
On 21.0
Just to be sure: you're aware this is noon, not midnight?
On 25.03.2014, at 11:08, Brosh, Yossi wrote:
> Hi to all,
>
> Any idea why thinBackup is not working as configured : H 12 * * 1-5
>
> Backup now manually - works,
> Run under win7, Jenkins version 1.549
>
>
> BR
> Yossi
>
> --
It's the jobs shown on the default view that have builds. You can access other
views' cc.xml as e.g. /view/All/cc.xml
(What's the point of providing URLs when they're only available from your
intranet?)
On 26.03.2014, at 21:44, Curt Patrick wrote:
> How does Jenkins decide what jobs to displa
On 27.03.2014, at 00:31, Curtis Kline wrote:
> Any suggestions here? We just need the cleanup job to always run after a
> testing job, so the VMs are fresh before the next testing job runs. I am
> probably missing something simple.
Make the cleanup a regular part of the jobs b1-b3.
If you n
Unless you're in the habit of manually patching things in plugins, it's
sufficient to backup only the top level files (.jpi/.hpi/.disabled/.pinned).
The folders are just the files extracted for use by Jenkins.
On 29.03.2014, at 00:57, Mishael Kim wrote:
> Hi,
>
> I was wondering what most of
I'd try comparing the output of the `env` command in your terminal and in the
Jenkins job to see whether relevant environment variables need to be defined in
the job.
On 29.03.2014, at 05:41, Fatemeh Mehdizadeh
wrote:
> Hi all,
>
> My test on jenkins is failing because jenkins can't connect
On 29.03.2014, at 18:56, Mishael Kim wrote:
> And I assume that by just dropping those top level files info a clean
> JENKINS_HOME/plugins folder should be sufficient in restoring them all?
Yes. Jenkins will extract them when starting, no different than what happens
when you install a new plu
It should suffice to just copy the files over to another Jenkins instance, and
restart it. Make sure all plugins used in the job are available in compatible
versions.
Since you're switching OSes, you might need to delete the symbolic links, e.g.
build number -> build ID links in the 'builds' di
On 31.03.2014, at 22:13, Steve K wrote:
> As shown below, the job attempts to create a sym-link--even though it is now
> running on Windows (from the Console text):
Actually, Windows/NTFS have symbolic links (run 'mklink /?' in cmd). AFAIK,
Jenkins uses them if possible.
I'd try to copy the
On 01.04.2014, at 11:41, matthew.web...@diamond.ac.uk wrote:
> Sorry about the late reply, but yes, I use copy artifacts with dynamic
> project names without any problems. Even a project name like this works for
> me:
>GDA.${GDA_release}-create.product.beamline-${GDA_group}-${GDA_beamline}
https://issues.jenkins-ci.org/browse/JENKINS-17526
Fixed in 1.549.
For the fix to take effect, you'll either need to
a) install Jenkins 1.549 or newer (via the pkg) or
b) manually perform steps equivalent to these:
https://github.com/jenkinsci/jenkins/commit/7c51cec55649b0e46047cb5e3198b66c3bdd94
The Github pull request builder plugin uses a method that seems to not be
considered public API of Jenkins core and whose signature was changed in 1.558.
https://github.com/jenkinsci/jenkins/commit/f97b5b33b0754532b945340cdee4b6ea1d2f6ba4#diff-b96181c66eb8934a98153f7f6baeff05R76
This is probably
Shouldn't this info be distributed using update center metadata?
E.g.:
https://wiki.jenkins-ci.org/display/JENKINS/Marking+a+new+plugin+version+as+incompatible+with+older+versions
On 08.04.2014, at 21:52, teilo wrote:
> Hi,
>
> Buildflow 0.11 is in the process of releasing and should hit the u
On 10.04.2014, at 15:56, Scott Evans wrote:
> Anyone know why this may be occurring and what I can do to resolve this?
It's a Maven job. AFAICT, they've always (or at least since 2009) worked like
this to store artifacts and logs separate for each module, see e.g.
https://github.com/jenkinsci
On 14.04.2014, at 22:43, Igor Berger wrote:
> Thanks. How could I confirm that?
The problem is that SCM Sync was written to rely on internals of Subversion
plugin that were changed in the 2.0 release.
Subversion plugin 2.0:
https://github.com/jenkinsci/subversion-plugin/blob/subversion-2.0/s
The global exclusion revprop configuration option has absolutely no associated
functionality.
You need to set the equivalent option in the per-job SCM configuration.
On 16.04.2014, at 21:41, Robert Mackin wrote:
> I'm setting up Jenkins to replace our homegrown build system.
>
> I want to se
(Re-sending to the list -- sorry Robert!)
On 17.04.2014, at 22:50, Robert Mackin wrote:
> Does that mean this feature doesn't really exist?
No, it just means you didn't see the 'Advanced' button a few options down.
> Repository URL
> Credentials
> Local module directory
> Repository depth
> I
On 21.04.2014, at 20:43, Lily Fu wrote:
> Your security settings have blocked a self-signed application from running.
>
> My questions: where should I look into this security setting?
> Jenkin's server? Firewall? Slave machine's IE browser setting? Jenken's
> webserver?
None of the above.
It's not a plugin.
On 25.04.2014, at 17:37, Ulli Hafner wrote:
> https://github.com/jenkinsci/rss-retaliation-plugin
>
> Stefan, you should join us on IRC than you would be able to fork by your own
> :-)
>
> Ulli
>
> Am 25.04.2014 um 13:55 schrieb Stefan Wolf :
>
>> Hi,
>>
>> I build a sma
Could be JENKINS-21622, fixed in 1.561.
https://issues.jenkins-ci.org/browse/JENKINS-21622
(Note that 1.561 -- and 1.560 -- seems to be not so great, so you might want to
hold off upgrading for a while.)
On 28.04.2014, at 15:42, Dirk Heinrichs wrote:
> Hi,
>
> we see some strange behaviour he
On 28.04.2014, at 17:50, Kevin Fleming (BLOOMBERG/ 731 LEXIN)
wrote:
> Is the AllowEncodedSlashes issue also present in Apache HTTPD 2.2.x, or just
> 2.4.x?
2.2.18+, see http://httpd.apache.org/docs/2.2/mod/core.html#allowencodedslashes
--
You received this message because you are subscribe
On 28.04.2014, at 06:54, Scott Hendrickson wrote:
> (2) Some pages returned absolute links (e.g.,
> "http://localhost:8080/jenkins/..."; ) rather than relative links.
> Specifically, go to Jenkins' "People" page and select a user. The user's icon
> is broken. To fix this, I added an output fi
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
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
Is it an 'Execute Groovy script' build step? If so, you need an 'Execute system
Gorovy script' build step instead.
On 30.04.2014, at 03:48, Maneesh M P wrote:
> I am trying to execute a Groovy script as build step, I am getting below
> error. Can anyone tell me how to resolve this ?
>
>
> va
Known issue in 1.560 and 1.561:
https://issues.jenkins-ci.org/browse/JENKINS-22734
Downgrade Jenkins to 1.559.
On 30.04.2014, at 12:28, Yves Schumann wrote:
> Hi@all,
>
> since some time I'm running into this error if builds on the nodes are
> finished and the artifacts should be copied to t
Known issue, will be fixed in 1.562:
https://issues.jenkins-ci.org/browse/JENKINS-22715
On 02.05.2014, at 00:03, Derek Robati wrote:
> Hello all,
>
> We use NIS on our Ubuntu 14.04 LTS HP ProLiant server.
>
> After following the steps at
> https://wiki.jenkins-ci.org/display/JENKINS/Installi
On 03.05.2014, at 18:14, Stephen Morrison wrote:
> Does anyone have any thoughts on this?
Writing a minimal plugin implementing LabelFinder and/or QueueTaskDispatcher
according to your rules might work.
http://javadoc.jenkins-ci.org/hudson/model/LabelFinder.html
http://javadoc.jenkins-ci.org/
To clarify, are you referring to a host firewall (e.g. single Linux system with
restrictive iptables) that doesn't allow incoming connections, or a network
firewall/proxy/NAT?
If the latter, some Jenkins features (anonymous usage reports, automatic tool
installers, update center, possibly some
Wait for 1.562.
https://issues.jenkins-ci.org/browse/JENKINS-22715
On 04.05.2014, at 16:22, ziv wrote:
> when trying to upgrade jenkins, I get the following:
> Can you please assist at what I should do to upgrade? (from 1.560 to 1.561)
>
> root@x:~# sudo apt-get install jenkins
> Reading
This isn't straightforward in Jenkins.
Are you sure you're not using it as a golden hammer?
On 07.05.2014, at 16:48, amol likhite wrote:
> Hi,
>
> Want to schedule a Jenkins job which will run after every 5 seconds.
>
> Thanks in advance.
>
> Regards,
> Amol Likhite
>
> --
> You received t
I commented on the issue with an explanation and how to solve your problem.
On 09.05.2014, at 21:40, Christian Goetze
wrote:
> I just filed https://issues.jenkins-ci.org/browse/JENKINS-22954
>
> It appears that if I change the node label string via groovy, that change is
> not immediately eff
> achieve this, or do I really need to call setNodes(getNodes())
>
> On Friday, May 9, 2014 12:48:41 PM UTC-7, Daniel Beck wrote:
> I commented on the issue with an explanation and how to solve your problem.
>
> On 09.05.2014, at 21:40, Christian Goetze
> wrote:
>
> &
On 11.05.2014, at 15:58, Mark Waite wrote:
> I believe that "Jenkins the Definitive Guide" was published before the
> Credentials plugin was used by the git plugin.
The Credentials plugin 1.0 was released over two years ago in early 2012.
The book was published in 2011, around the time of 1.4
On 11.05.2014, at 22:30, EK wrote:
> I tried to pass the path for the job "A" as follow "CommonJobs\A" - (also
> tried "CommonJobs\\A") but with no luck !
CommonJobs/A and /CommonJobs/A should both be valid values. Even
../CommonJobs/A should work.
IOW, think less like a Windows user ;-)
--
On 13.05.2014, at 22:49, Scott Evans wrote:
> Which works fine. However, each call of this URL just toggles the current
> status. Is there another parameter that I could call that either explicitly
> tries to take it offline, or put it online?
Not in this API. The CLI has online-node and
On 14.05.2014, at 09:25, Simon F wrote:
> Whats this error about? I cannot find any information about this message on
> the net. As the downstream build is executed without problems I'm a bit
> worried about future updates to Jenkins changing this.
It's a warning, not an error.
>From the cha
In that case it would be helpful if you verify that it works in jobs without
spaces in their names, doesn't work in jobs with spaces in their names, and if
so, added that information to the Jira issue.
Note that if that's the problem, as a workaround you can rename the job to not
have spaces in
Job Config History plugin and Audit Trail plugin come to mind.
On 19.05.2014, at 08:36, ziv wrote:
> Hi
>
> Does anyone have recommendations/best practices for auditing changes to
> Jenkins Job configurations.
>
> Who changed the configuration, when and what were the changes.
>
> Thanks
> Zi
The plugin is Extended Read Permission Plugin:
https://wiki.jenkins-ci.org/display/JENKINS/Extended+Read+Permission+Plugin
It does basically what passing -Dhudson.security.ExtendedReadPermission=true to
java would do, documented here:
https://wiki.jenkins-ci.org/display/JENKINS/Features+controlle
201 - 300 of 1327 matches
Mail list logo