Re: Archived Artifacts

2012-12-18 Thread Kanstantsin Shautsou
You use maven style project, it saves build artifacts. If you have problems with space, decrease history. On 10.12.2012, at 20:41, Nicky Ramone wrote: > Hello. > > I noticed that despite my configuration is defined so that no artifacts are > archived, the artifacts are stored in the disk anyw

Re: ldap authentication

2013-01-06 Thread Kanstantsin Shautsou
You should look it periodically to get dynamic of processes also you can try modify plugin sources to print debug information and recompile. On 06.01.2013, at 12:54, "Levin, Ilya" wrote: > Hello, > > I’m using Jenkins v 1.472 with ldap authentication, but the performance is > very bad. > It

Re: significance of .jenkins diectory tree

2013-01-16 Thread Kanstantsin Shautsou
This directory looks like cache directory that used by winstone. If yes, then you can delete it and it will be filled by cache again. All depends on how you installed jenkins. On 28.12.2012, at 23:26, Kamal Ahmed wrote: > Hi, > Does anyone know the significance of /.jenkins and the > files/Dire

maven home doesn't set for freestyle/maven3 project

2012-05-18 Thread Kanstantsin Shautsou
Hello, i have a problem tired found root of problem. jenkins 1.463 (and all ~20 earlier) setuped on rhel via rpm. System haven't installed maven and MAVEN_HOME variable. Jenkins was moved from jenkins system user folder to /opt/jenkins. Problem is for: 1) freestyle project (root maven exection and

Jenkins maven project wrong downsteam jobs

2012-06-26 Thread Kanstantsin Shautsou
Hello, after update to 1.471 job saw downsteam projects that doesn't exist in config.xml. It very critical and i not know what else to check. Job recretaion with copy not help. Any ideas?

Re: Problems with JVM Parameters in Freestyle Jobs with Maven Builder

2012-07-29 Thread Kanstantsin Shautsou
Does it work for maven based jobs? Looks like you can't set more memory for maven then you gave to jenkins process, because maven executes in parent jenkins java process. 2012/7/26 Markward Schubert > Hi Group! > > Is there some known issue with JVM Parameters being ignored for Maven > build ste

Re: workspace deletion

2012-08-05 Thread Kanstantsin Shautsou
Also check $JENKINS_HOME/workspace/${JOB} . On 03.08.2012, at 19:39, David Weintraub wrote: > In Unix, you could do something like this: > > $ rm -rf $JENKIN_HOME/jobs/*/workspace/* > > Another possibility is: > > $ cd $JENKINS_HOME/jobs > $ find . -regex "\./[^/]+/workspace/[^/]+" -exec rm

Re: ssh slaves connection timeout

2014-10-22 Thread Kanstantsin Shautsou
Do you have any logs? In http://your_jenkins_url/log and jenkins.log ? On Friday, May 23, 2014 6:07:17 PM UTC+3, Guillaume Boucherie wrote: > > Hi, > > I made more tests and I find something very interesting. > When I launch the slave with a custom script the communication between > master and sl

Re: Question on running simultaneous jobs in Jenkins

2014-11-12 Thread Kanstantsin Shautsou
Please, try ask it in users mail list. You can also try register http://devops.com/news/ci-and-cd-across-enterprise-jenkins/ where first topic " - Orchestrate Continuous Delivery pipelines with the new workflow feature," may potentially help you. On Wednesday, November 12, 2014 8:39

Re: How to auto trigger Build when a change is pushed to GitHub

2015-11-10 Thread Kanstantsin Shautsou
Just install github-plugin, configure global and job settings according to https://wiki.jenkins-ci.org/display/JENKINS/GitHub+Plugin and replace "poll scm" with "Build whenever commit is pushed to github". On Tuesday, November 3, 2015 at 5:17:06 PM UTC+3, Suryateja Hanumandla wrote: > > Hi, > C

Re: Seeking help with Github plugin web hooks

2015-11-10 Thread Kanstantsin Shautsou
Poked Means that it poked GitSCM poll logic. That mean that it called the same algo as "Poll SCM" trigger. You should check and review Git polling logs of git configuration. GitSCM provides ability to specify required for build branches with "Branch Specifier". On Monday, November 2, 20

Re: Jenkins 2.0 Proposal: Pipeline as code front and center

2015-11-10 Thread Kanstantsin Shautsou
s/Workflow/.?/ is of course interesting idea, but i looks like it has the gulf between the two sides. - Freestyle has barrier between build steps and Publishers that constantly causes headache for plugin devs. I tried add SimpleBuildStep support and got other problems (see jenkins PRs) with gen

New GitHub Integration/PullRequest plugin

2016-03-23 Thread Kanstantsin Shautsou
Hi all. Maybe it will be useful for somebody. I started making this plugin 1 year ago when wasn't satisfied with ghprb quality. I was able optimise performance and solved various bugs in jenkins and github-api library to make it work better. With @lanwen's help we was able to extend github-plugi

Re: Scheduled maintenance window April 15th - April 17th

2016-04-18 Thread Kanstantsin Shautsou
So you started migration on Friday? ;-)) On Monday, April 18, 2016 at 7:18:47 AM UTC+3, R Tyler Croy wrote: > > (replies inline) > > On Fri, 15 Apr 2016, R. Tyler Croy wrote: > > > Howdy folks, starting today I am migrating services from various hosts > this > > weekend. The services that are

Re: Jenkins plugins to push tags to git repo after successful builds

2016-06-30 Thread Kanstantsin Shautsou
If you are keeping credentials in GIT Scm configuration you should use git publisher. If not then you can create a trick with anybuildstep-plugin and do pushes from shell execution. On Thursday, June 30, 2016 at 4:21:05 PM UTC+3, piyush joshi wrote: > > Hi, > > Is there any Jenkins plugins to pu

Re: [Jenkins World 2016 ] Get 20% OFF

2016-07-02 Thread Kanstantsin Shautsou
Sorry, but that's smells like a spam. On Friday, July 1, 2016 at 10:34:17 PM UTC+3, alytong13 wrote: > > [image: Inline image 1] > > *Go ALL IN and join us at Jenkins World 2016 > , September 13 - 15, > 2016.* > > Hello, > > Today is the last d

Re: P4 plugin and Perforce plugin???

2015-02-03 Thread Kanstantsin Shautsou
For github features there are even 4 or 5 plugins ;) About perforce search initial thread in jenkins-devel maillist. One plugin supported by community, second by perforce itself. On Tuesday, February 3, 2015 at 9:44:02 PM UTC+3, rginga wrote: > > I use the Perforce plugin version 1.3.26 and anot

Re: SQL Injection Vulnerability

2015-02-03 Thread Kanstantsin Shautsou
This is not an SQL injection, configuration page calls all checks for form validations https://wiki.jenkins-ci.org/display/JENKINS/Form+Validation On Tuesday, February 3, 2015 at 9:35:15 PM UTC+3, Daniel Beck wrote: > > Just to clear this up, since it was reported publicly: > > This appears to b

Re: How to exit a Groovy postbuild script gracefully?

2015-02-03 Thread Kanstantsin Shautsou
Just don't throw error, especially RuntimeException. On Thursday, January 29, 2015 at 3:04:52 AM UTC+3, MCSF wrote: > > Hello, > I want to be able to exit the Groovy postbuild step gracefully if the > build status was ABORTED. > Here is what I have now: > >def buildstatus = manager.build.getR

Re: Execute two jobs in Jenkins without losing session

2015-04-29 Thread Kanstantsin Shautsou
AFAIK it's currently jenkins limitation that you can't bind sequence of jobs to one slave. I hope something will change after Cloud API improvements. All that you can do it just create a static slave in EXCLUSION mode (run only tied jobs), assign label, bind job to this label. On Tuesday, Apri

Re: Docker Plugin 0.9.0-RC1

2015-05-28 Thread Kanstantsin Shautsou
Please fill issue with providing steps for reproducing. On Wednesday, May 13, 2015 at 5:50:50 AM UTC+3, Richard Bywater wrote: > > Hi > > I've been playing with the latest RC1 version of the Docker Plugin to see > if it fixes some of the issues I had previously. > > Overall it seems a bit more

Re: NullPointerException in org.jfrog.hudson.maven3.extractor.MavenExtractorEnvironment.buildEnvVars(MavenExtractorEnvironment.java:132)

2015-05-28 Thread Kanstantsin Shautsou
NPE is always a bug, please fill issue for artifactory-plugin component On Thursday, May 21, 2015 at 11:09:05 PM UTC+3, John Lemp wrote: > > Not sure if it is the same issue but we had the same error after upgrading > Jenkins and the artifactory plugin. The project settings for the > Artifactor

Re: Jenkins slave appear offline - SSHLauncher threads BLOCKED

2015-07-04 Thread Kanstantsin Shautsou
> > > If anyone else is interested, we will be releasing our scalability test > harness (actually I will be ripping the bottom out of the acceptance test > framework and putting the scalability harness in its place... But the > harness is also useful for scalability testing). We will also be pu

Re: multiple LDAP connections

2015-07-07 Thread Kanstantsin Shautsou
Currently jenkins doesn't support failovers https://issues.jenkins-ci.org/browse/JENKINS-15063 Also note that current security library is outdated and implementing something using is maybe a waste of time. There is existed issue for it https://issues.jenkins-ci.org/browse/JENKINS-5303 and @ndelo

Re: JUC East and EU - slides/videos available

2015-07-23 Thread Kanstantsin Shautsou
Thanks! -- 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 discussion on the web visit https://groups.g

Re: Jenkins and GitHub Enterprise "Forking"

2015-09-07 Thread Kanstantsin Shautsou
Validate GH PRs, work in forks, when fork will be ready for merge - PR to target branch, wait verification/do review. Pretty simple and easy. On Wednesday, September 2, 2015 at 2:40:13 PM UTC+3, Eric Fontana wrote: > > I'm new to Jenkins, I have the GitHub plugin installed and its connected > to

Re: Jenkins Meetups and CIA

2015-09-18 Thread Kanstantsin Shautsou
120,000 active plugins /me choked -- 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 discussion on th

Re: Crowd2 plugin sso issues

2015-09-19 Thread Kanstantsin Shautsou
ATM SSO logic is under "remember me" checkbox. If it doesn't work, then you probably something misconfigured, verify cookies that you receiving in browser before/after auth. PS. We are working on plugin refactoring to get better remember me and standard authentications. On Monday, September 14

Re: Approve workflow script from Job DSL plugin

2015-09-22 Thread Kanstantsin Shautsou
When i'm adding script manually in job it approved, when converting to dsl - it requires approval. This is not very convenient. On Sunday, August 16, 2015 at 11:29:46 AM UTC+3, David Resnick wrote: > > I've set the script to be sandboxed in the Job DSL script, though it looks > link only a margi