Re: Git plugin: how does it decide to build instead of aborting?

2015-08-05 Thread bl0ck3r
> > What do you have in your "Branches to build" configuration? It would > appear that it's something that doesn't match any of the remote branches. > That was the right question to ask... and I got it to work. Branches to build: fork/${FORK_BRANCH} And I even threw in the Merge before build

Git plugin: how does it decide to build instead of aborting?

2015-08-01 Thread bl0ck3r
In the big picture, I want to give my users a job where they specify both the source (fork) and destination (upstream) git repository, as well as the source and destination branch names, and I want jenkins to merge the source (repo, branch) into the destination (repo, branch), then build. The so

build pipeline plugin links are all 404

2015-06-24 Thread bl0ck3r
The links on the build result page created by the build pipeline plugin are all broken and yield 404. The links look like this: http://host/1997eef2-85a8-407c-ac43-11bc67cb7403/job/jobName/ What is that hex number for? How do I fix these links? Thanks, Martin -- You received this message becau

Re: jenkins support for parametrized test results

2015-05-07 Thread bl0ck3r
aite > > On Tuesday, May 5, 2015 at 9:49:51 AM UTC-6, bl0ck3r wrote: >> >> Does jenkins support the JUnit XML format of JUnitParams for reporting >> tests? >> https://github.com/Pragmatists/JUnitParams/issues/38 >> >> If not, is there a Jenkins test r

How to lookup Git Build Data from past builds?

2015-03-01 Thread bl0ck3r
Jenkins is the authoritative source of whether a Git commit SHA1 has passed or failed to build. How do I, several weeks after the build is done, interrogate Jenkins about a specific Git commit SHA1? Seems to me I have to scan a hole bunch of XML files until I find the right one. Does not feel l

Re: How to disable automatic scheduling of the Git Plugin

2015-01-28 Thread bl0ck3r
Yes, Mark was also suggesting that that as a probable cause, however, I think the problem is different. I decided to open a feature request, where I show that the Branch Specifier is set by a build parameter variable: https://issues.jenkins-ci.org/browse/JENKINS-26664 Martin > You might try lea

Re: How to disable automatic scheduling of the Git Plugin

2015-01-28 Thread bl0ck3r
I see that message ("Scheduling another build to catch up with project-integration") in the console. My use case is the same as yours: all my builds are on-demand. We definitely do not want any self-triggered builds. On Wednesday, January 28, 2015 at 1:40:43 PM UTC-5, Dunnigan, Terrence J wrot

How to disable automatic scheduling of the Git Plugin

2015-01-27 Thread bl0ck3r
The Git Plugin tells me that it is "Scheduling another build to catch up with project-integration" I do not use polling, I do not use any triggers, I have a plain job triggered by hand. How do I turn off any and all of the automatic scheduling performed by the Git Plugin? Thanks, Martin -- Yo

Re: git-plugin: can it do pull requests (no github)?

2015-01-26 Thread bl0ck3r
I do not understand how the Branch Specifier works when there are two repositories. I think I get it with one repo, but not with two. In the case of two repos, the plugin checks out the master even when I specify a branch. I wrote a short study on my experiment and on how I came to this conclus

Re: git-plugin: can it do pull requests (no github)?

2015-01-26 Thread bl0ck3r
Thank Mark. I did not realize your were a maintainer on this plugin until I visited the wiki page. I have decided to learn the Git Plugin by experimenting with it, one baby step at a time. I am confused by the purpose of the refspec, and I have reopened https://issues.jenkins-ci.org/browse/JENK

Re: git-plugin: can it do pull requests (no github)?

2015-01-25 Thread bl0ck3r
Thanks for the offer. Yes, I'd like to see a config.xml. That should help me understand how to use the git-plugin (I think I over estimated what it is meant to do). -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this grou

git-plugin: can it do pull requests (no github)?

2015-01-25 Thread bl0ck3r
I was under the impression that by installing the git-plugin, I would be able to support pull requests between two custom local repositories (say file:// - no github here). By that I mean that the git-plugin would clone a "central" repo, fetch a branch from a "forked" repo, and merge them. Then

Re: Scripting language to learn

2014-12-27 Thread bl0ck3r
Scripts are great for writing process specific glue-programs and point tools. I learned Bash from the internet, but after a while I bought the O'Reilly book "Learning the bash shell", it was worth very penny and this accelerated my learning: don't waste time, buy a book. I also often find answ

Re: Update center is missing a plugin but it is listed in default.json

2014-12-11 Thread bl0ck3r
Is there a logger that I can turn on which would give me more information on this problem? The log reveals nothing relevant. -- 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

Re: Plugin to display arbitrary results?

2014-12-10 Thread bl0ck3r
Arbitrary data in tabular form, try: https://wiki.jenkins-ci.org/display/JENKINS/Summary+Display+Plugin For plotting data over time, try: https://wiki.jenkins-ci.org/display/JENKINS/Plot+Plugin -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. T

System groovy script: how do I import a custom class from the slave workspace?

2014-04-15 Thread bl0ck3r
Hi, How does one import a custom class from within a system groovy script, when this class is in a file in the workspace? The workspace is obtained like this: def thr = Thread.currentThread(); def currentBuild = thr?.executable; def workspace = currentBuild.getModuleRoot().absolutize().toString

Re: Loading job configuration pages is excruciatingly slow (minutes)

2014-01-28 Thread bl0ck3r
Thanks for the advice. 1) scrolling to the end while config is loading: it gets to the end (the last post-build step which is editable email notification) very quickly. so it seems it's busy doing something else 2) examining the threadDump while loading the config is hung at the bottom: nothin

Re: Loading job configuration pages is excruciatingly slow (minutes)

2014-01-28 Thread bl0ck3r
I should add that the CPU is railed all the time and that I use Jenkins 1.509.2. There is nothing else on that host but Jenkins. We have about 50 jobs, and thousands of results (and hundreds/thousands of JUnit xml files per build). Have I exceeded Jenkins capacity? How do I discover what Jenkin

Loading job configuration pages is excruciatingly slow (minutes)

2014-01-28 Thread bl0ck3r
Everything in Jenkins is reasonably fast, but loading job configuration pages is frustratingly slow (minutes). Using Firefox, hosted on linux. Started happening a few months ago. I don't get it since Jenkins should only be loading the config.xml for the job... what else does it do that takes so

HTML Publisher plugin no longer listed

2013-07-03 Thread bl0ck3r
The HTML Publisher plugin is no longer listed on the following page... can some one bring it back please? https://wiki.jenkins-ci.org/display/JENKINS/Plugins Thanks. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this gr

Duplicate test in JUnit XML breaks test result links

2013-05-30 Thread bl0ck3r
The second link in the "All Failed Tests" table breaks when this JUnit XML is used, is it a bug? XML: failed with seed value of 123 failed with seed value of 456 It looks like the problem is that although Jenkins is able to link to the test results themselves, it does no

Re: End-user debugging Jenkins/Git Plugin

2013-05-29 Thread bl0ck3r
I tried the suggested Loggers and I see nothing in the logs. How do I find the right Loggers? -- 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+u

Re: Looking for XML report format that supports multiple iterations per test

2013-05-24 Thread bl0ck3r
I am looking at the NUnit samples, but I don't find an example of how to write a test report. However, I have noticed the following with JUnix XML in Jenkins: if there are two identical tests in the test suite, Jenkins reports them separately: I wonder if this would work, or if it woul

Looking for XML report format that supports multiple iterations per test

2013-05-23 Thread bl0ck3r
Hi, I am looking for any XML report format publishable by Jenkins, that is able to report multiple iterations of the same test when the same test is executed with different random seeds. I am NOT looking for a test framework, nor a test runner. I am only looking for a test report format digest

Why is this unstable rather than failed?

2013-05-01 Thread bl0ck3r
This JUnit XML file causes the build to be unstable. Why isn't it failed instead? SEED=1 SEED=2 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 jen

Why is SIGTERM trap in freestyle shell script not executed?

2013-04-16 Thread bl0ck3r
In a freestyle job, the build phase has the following script: #!/bin/bash trap 'echo "Death by SIGTERM"; kill $pid; exit 15;' SIGTERM sleep 10 & pid=$! echo "Waiting" wait $pid echo "Exit status: $?" When this is aborted with the UI [x] red box, the message "Death by SIGTERM" never appears, but

Re: Looking for good Linux bash script examples

2013-03-30 Thread bl0ck3r
Bash is very good when the problem is solved by running unix commands. Learning bash is key, and I strongly recommend the O'Reilly book "Learning the bash shell". The bash shell is mature and even if the book does not cover bash 4, all the fundamentals are there. I can recommend three sites for

envinject plugin evaluated groovy script: how do I print text to the console?

2013-03-22 Thread bl0ck3r
I tried: System.out.println("some text") println("some text") manager.listener.logger.println("some text") and none of them work. How do I print text to the console from the evaluated groovy script of the envinject plugin? Thanks. -- You received this message because you are subscribed to the

Promotion blocked by current build: Waiting to acquire the workspace

2012-08-29 Thread bl0ck3r
Hi, My manual promotion process is being blocked and the thread dump shows this message: Waiting to acquire /.../workspace/project-name : Executor #2 for hostname : executing project-name » promotion » Promotion #40 This is terrible since the build I need to promote is actually an older build

Re: Build Promotion and Copy Artifact: current build is overwritten

2012-08-18 Thread bl0ck3r
On Friday, August 17, 2012 5:56:29 PM UTC-4, qazwart wrote: > > > On Aug 17, 2012, at 5:12 PM, bl0ck3r > > wrote: > > > Well, I think what I am trying to achieve is simple: promote a build > while another build is running on the same project > > Wait a secon

Re: Build Promotion and Copy Artifact: current build is overwritten

2012-08-17 Thread bl0ck3r
> > Another possibility is to copy the artifacts not to the build > directory itself, but to a directory outside of Jenkins (which is > pretty much what the Maven repository does for us). > > Well, I think what I am trying to achieve is simple: promote a build while another build is running

Re: Displaying user in the Build History column on the left

2012-05-17 Thread bl0ck3r
I already use the description setter to set the description to the actual description! How to concatenate the name of the person launching the build to this description? My regex is DESCRIPTION=(.*)

Re: Displaying user in the Build History column on the left

2012-05-16 Thread bl0ck3r
Looks like I have to write my own code for this to work... this rules out this option for me for now. On May 15, 6:53 pm, Ken Bertelson wrote: > I use the Groovy Postbuild Plugin to do this.  You can display custom icons > in the Build History, too.

Re: Displaying user in the Build History column on the left

2012-05-16 Thread bl0ck3r
I use this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Description+Setter+Plugin I looked under the Jenkins configuration and the job configuration for "started by" but I could not find it. On May 15, 10:46 am, Peter wrote: > Use the description setter plugin. You need to set the descrip

Is it called "Project" or is it called "Job"?

2012-05-15 Thread bl0ck3r
The UI needs to be more consistent. In the main Jenkins menu, I can create a "New Job" called Foo, but after it is created, the page is titled "Project Foo". This is inconsistent and got me confused for a couple of days as I was learning Jenkins.

Displaying user in the Build History column on the left

2012-05-15 Thread bl0ck3r
How do I display the username of the person who launched the build in the Build History (that is the box on the left-hand side of the job page)

Displaying test results before job is finished

2012-05-15 Thread bl0ck3r
I have hundreds of tests in a job, and it can take several hours to complete. Is there a way to have Jenkins display the test results as the job progresses? Do not tell me to split the job into smaller jobs, it is not practical as I would end up with hundreds of jobs and this would be unmanageable

ChangeLog parser without SCM

2012-03-31 Thread bl0ck3r
Is it possible to have a ChangeLog parser without developing the full SCM plugin?

Re: how to report on multiple iterations of the same test

2012-03-29 Thread bl0ck3r
I was hoping to have an additional column for the seed value. I do not know what a "TestRunner" is, and unless it works with SystemVerilog, I can't use it. On Mar 29, 3:27 am, Ullrich Hafner wrote: > Can't you change the name of the test case dynamically? E.g., using a > TestRunner? > > Ulli >

how to report on multiple iterations of the same test

2012-03-28 Thread bl0ck3r
I need to report on multiple iterations of the same test when it is run with different seeds. With the following report, jenkins does not see multiple iterations... how do I get it to report all the iterations? Thanks.