Issue
How to wait for build to finish when triggering via Jenkins CLI (jenkins-cli.jar
)?
Environment
- CloudBees Jenkins Enterprise
- Jenkins
- Jenkins CLI
Resolution
Add the -s
parameter to the build command:
java -jar jenkins-cli.jar -s http://localhost:8000 build "my-job" -s
Replace http://localhost:8000
with your Jenkins URL and my-job
with your job name.
Authentication is not included in this example for brevity.
0 Comments