0

I try to execute the example of Jenkins for a new Pipeline.
When I launch it, the build is running but when I display the console, there is nothing in it except Started by user anonymous
I let the pipeline run for a few minutes and then I force to kill it.

As I said, I try the demo script in Jenkins:

node {
   stage 'Stage 1'
   echo 'Hello World 1'
   stage 'Stage 2'
   echo 'Hello World 2'
}
CSchulz
  • 10,882
  • 11
  • 60
  • 114
bryce
  • 842
  • 11
  • 35
  • I installed Jenkins 2.0 and the this plugin with all it's dependencies: https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin – bryce May 02 '16 at 12:22
  • Are you able to execute any other project? – luka5z May 02 '16 at 13:26
  • I did not try for a Pipeline project but it works well for CI for other Maven projects – bryce May 02 '16 at 13:28
  • Try running Pipeline job from fresh JENKINS_HOME or get more information using [Support Core Plugin](https://wiki.jenkins-ci.org/display/JENKINS/Support+Core+Plugin). – luka5z May 02 '16 at 13:42
  • I re-installed all the pipeline plugin and restart Jenkins. I installed Support Core Plugin too but I don't where to look at to have input of what's going on... Thanks for your help – bryce May 02 '16 at 14:25

2 Answers2

0

You can check a thread dump and the Jenkins log file. Something is badly broken but from the description alone it is impossible to say what.

Jesse Glick
  • 24,539
  • 10
  • 90
  • 112
0

I finally found a solution.

As I said in the question, I had to install (manually) the pipeline plugin and all its dependencies because I was under a proxy and I haven't at this time the credentials to pass through it.

Today I had the credentials and I let Jenkins do an update of all of my plugins and everythings went fine.

bryce
  • 842
  • 11
  • 35