node-jenkins-api icon indicating copy to clipboard operation
node-jenkins-api copied to clipboard

Jenkins API for NodeJS

Results 39 node-jenkins-api issues
Sort by recently updated
recently updated
newest added

Bumps [css-what](https://github.com/fb55/css-what) from 2.1.0 to 2.1.3. Commits 2db00ca 2.1.3 dc51092 fix(css-selectors): extend regex to include superscript in range, fix #27 (#28) a5f1991 Test on node LTS b2a2117 2.1.2 e9ef3f1 Run...

dependencies

Would you add API to manage nodes (build machines) ?

the code is below jenkins.all_builds('xxxx', 'id,timestamp,result,actions[*]', function(err, data) { if (err){ console.log('err1', err); } console.log('data',data) }); it runs error and returns ‘Server returned unexpected status code: 400’ but when I...

Bumps [async](https://github.com/caolan/async) from 2.5.0 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) v2.6.3 Updated lodash to squelch a security warning (#1675) v2.6.2 Updated lodash...

dependencies

I am trying to get a running build detail but every call gives a previous completed build details please help me out in this problem thank you

Adds crumb support

at TLSSocket._finishInit (_tls_wrap.js:633:8) code: 'SELF_SIGNED_CERT_IN_CHAIN' }

Hi I'm trying to use this code to start a job in Jenkins ` var jenkins = require('jenkins')({ baseUrl: 'MyBaseURL', crumbIssuer: false });` The code is hosted on AWS S3...

How do you resolve unable_to_verify_leaf_signature error? Is there a way to set cert through jenkinsapi.init?

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...