Home > Software engineering >  Jenkins failure job: Jenkins can't cd to specific path
Jenkins failure job: Jenkins can't cd to specific path

Time:10-03

I am novice with Jenkins, I am trying to create a Job. For build I use "execute shell command" and the code is as below: cd /Users/username/javaFiles javac hello.java java -cp . hello

however, when Build the job, i got this failure message : failureMessage

Thanks in advance for help !

CodePudding user response:

The path for cd is correct ? Ensure the path exist.

  • Related