Re: Ability to show new repo commits after last build?

2016-03-22 Thread Baptiste Mathus
Hi Kevin, What was your build frequency before? Because indeed like Mark said, most of us here would just become nervous if Jenkins hadn't started building new commits either immediately a build after a code push (with a hook on the SCM side), or at least in the next few minutes after using pollin

Git plugin setting GIT_COMMIT to value of last hash??

2016-03-22 Thread Brantone
Hello, We have a quirky situation we're trying to track down ... on random occasions, the environment variable value for "GIT_COMMIT" is actually set to the hash for the last commit instead of the current one, as the docs outline (https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin). The act

Re: Ability to show new repo commits after last build?

2016-03-22 Thread Kevin
bummer. I have been slowing migrating our projects over from TeamCity and found out today that this was a feature that my devs really liked in TeamCity. thanks for the quick response. On Tuesday, March 22, 2016 at 2:33:02 PM UTC-5, Kevin wrote: > > may be overlooking something simple but is th

Re: Jenkins on Ubuntu/PowerPC hangs

2016-03-22 Thread Andrew Geissler
Made a docker image as well, def needs some TLC but gets the job done - https://hub.docker.com/r/geissonator/ubuntu-jenkins-ppc64le/ On Wednesday, December 23, 2015 at 9:39:51 AM UTC-6, Andrew Geissler wrote: > > I ended up getting things to work by just installing jenkins into apache > tomcat7

Fwd: Jenkins Job Green Even with Skipped Tests

2016-03-22 Thread Arun S
Hello All, I'm seeing that the jenkins job status is showing as green and successful even when there are skipped tests. (Tests run: 80, Failures: 0, Errors: 0, Skipped: 1) Is it this default behaviour that if there is no failed tests, the job will be marked as green? If so, can you point me at a p

Weblogic deployment from jenkins

2016-03-22 Thread süleyman idinak
Hi All, I'm working on weblogic .war deployment from jenkins. I installed your webLogic deployment plugin. I created deployment job. When i start the deployment job i'm getting this error; I uploaded error and configuration files. 1-> Error : https://goo.gl/NSPxcW 2-> Configuration 1 : https:/

Re: Ability to show new repo commits after last build?

2016-03-22 Thread Mark Waite
There is no way that I know to show commits to the repository since the last build. The usual pattern is to start a build as soon as new commits are detected. Mark Waite On Tue, Mar 22, 2016 at 1:33 PM Kevin wrote: > may be overlooking something simple but is there a way to display in a > Jenk

Ability to show new repo commits after last build?

2016-03-22 Thread Kevin
may be overlooking something simple but is there a way to display in a Jenkins project any new commits made to a Github repo (that the Jenkins project is configured to use) since the last build was run? My users are hoping to be able to go into Jenkins, select a project and see somewhere a

Re: Storing job configurations with source code in VCS

2016-03-22 Thread Patrick van der Velde
Hi Victor Well that's a good start. Being able to verify that the configuration works is good. However I would really prefer having some kind of UI to create the configurations to make it easier for users to edit their configurations. I'm guessing there are no plug-ins that allow me to achieve

Re: Opening Html files failed

2016-03-22 Thread Daniel Beck
On 18.03.2016, at 15:48, jer...@bodycad.com wrote: > Result: sandbox 'allow-scripts'; script-src 'self' 'unsafe-inline' > 'unsafe-eval'; img-src *; Try removing the quotes around allow-scripts. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group

Re: Jenkins 2.0 alpha release available

2016-03-22 Thread Daniel Beck
Thanks for your feedback! On 22.03.2016, at 17:03, Truc Nguyen wrote: > 1. Offline executor > > It looks like a Pipeline job does not appear in the left side panel. > It was useful in order to abort a pipeline without having to open the > pipeline job’s page. > Any reason whyc it’s been remove

[GSoC2016] request help and feedback for GSOC Proposal Draft

2016-03-22 Thread YanceyLiu
Hello everybody, I am a student come from China, and I'm going to attend the Google Summer Of Code. In this project, My idea is the integration of docker plugin and pipeline. My ideas come from some defects of the docker plugin. First of all, Jenkins has docker plugin already, we ca

Dynamic triggering is working?

2016-03-22 Thread Oleh Kravchenko
Gerrit Trigger starts build when I push new change to "library" project, but doesn't start when change is for "application" project. And they both are listed in dynamic configuration at http://localhost/jenkins_trigger.txt: p=library b^** p=application b^** Here part of config.xml

Re: Jenkins 2.0 alpha release available

2016-03-22 Thread Truc Nguyen
Hi, I would like to provide some feedback on Jenkins 2.0 alpha releases. So I hope this is the right place to ask questions :-) BTW I really like the highlights that Jenkins 2.0 alpha release already provide. Looking forward to the next steps! Questions 1. Offline executor It looks like a *P

Jenkins job -> docker run hello-world fails with error docker: Cannot connect to the Docker daemon.

2016-03-22 Thread 80Vikram
Hi All, I'm trying to setup jenkins on Linux VM I created a sample job with shell step as docker run hello-world Job is failing with error as below [Test-1-2] $ /bin/sh -xe /tmp/hudson643651586166715818.sh + docker run hello-world docker: Cannot connect to the Docker daemon. Is the docker daem

Jenkins Docker Slave unable to connect to Jenkins Master

2016-03-22 Thread jsandhu2204
HI, Issue: Jenkin Slave running in a Docker Container unable to connect to the Jenkins Master. I have Jenkins Master in Docker Container on AWS EC2 Instance. I have installed AWS ECS (Container Plugin). Jenkins Slaves are running in the Docker container. Here is the log: Jenkins Maste

escaping xmllint on a jenkins slave

2016-03-22 Thread sandorhadasdig
The following code works fine from a bash script ( ./test.sh ): export test=$(xmllint --xpath 'string(//*[local-name()="widget"]/@androidversionCode)' config.xml) echo $test How do I put it into Jenkins "execute shell" command? There is either some syntax problem or it returns an empty string