We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jenkins.console_output('iosBuild', '#415', { depth: 1 }, function (err, data) { if (err) { return console.log(err); } console.log(data) });
when i write this way, data.body is a jenkins html is this right ? i think data.body should be the log of the build,like this "started by user ...."
The text was updated successfully, but these errors were encountered:
remove '#' symbol , and try it again :
jenkins.console_output('iosBuild','415', { depth: 1 }, function (err, data) { if (err) { return console.log(err); } console.log(data) });
It works for me .
Sorry, something went wrong.
remove '#' symbol , and try it again : jenkins.console_output('iosBuild','415', { depth: 1 }, function (err, data) { if (err) { return console.log(err); } console.log(data) }); It works for me .
hello,what is ‘415’ ?In your example , is queueId in the jenkins.build() success result data?
queueId
jenkins.build()
No branches or pull requests
when i write this way, data.body is a jenkins html
is this right ?
i think data.body should be the log of the build,like this "started by user ...."
The text was updated successfully, but these errors were encountered: