github-bot icon indicating copy to clipboard operation
github-bot copied to clipboard

Lite-CI comments not posted

Open richardlau opened this issue 5 years ago • 6 comments

Refs: https://github.com/nodejs/node/pull/29917#issuecomment-540723645

on behalf of @Trott:

It seems like the bot doesn't post the lite CIs automatically anymore for some time. It only posts the full CI runs.

richardlau avatar Oct 11 '19 14:10 richardlau

Sorry for the late response. Please let me know when you notice this again, and I'll do my best to dive into the bot logs quicker to see if there's any traces to that specific PR.

The only thing I found now was this:

02:48:11.721 FATAL bot: Unchaught exception, terminating bot process immediately
    TypeError: Cannot read property 'data' of undefined
        at githubClient.pullRequests.getCommits (/.../github-bot/lib/push-jenkins-update.js:92:29)
        at module.exports.sendError (/.../github-bot/node_modules/github/lib/index.js:874:7)
        at /.../github-bot/node_modules/github/lib/index.js:882:21
        at callCallback (/.../github-bot/node_modules/github/lib/index.js:738:9)
        at IncomingMessage.<anonymous> (/.../github-bot/node_modules/github/lib/index.js:807:13)
        at IncomingMessage.emit (events.js:194:15)
        at endReadableNT (_stream_readable.js:1125:12)
        at process._tickCallback (internal/process/next_tick.js:63:19)

Although that looks related since it is trying to push a Jenkins status to GitHub, my first gut feeling leans towards https://github.com/nodejs/github-bot/issues/245 because that might make the bot try to find commits related to a PR that does not exist in the node repo. I'll ensure we don't get that error anymore, and see if we get more sensible errors logged in those scenarios, instead of crashing the process.

phillipj avatar Oct 17 '19 20:10 phillipj

@phillipj should be easy to test, open a PR against node, trigger a lite ci. People might not notice failure, and if they do, might not know (or bother) to find this issue and comment.

sam-github avatar Oct 17 '19 20:10 sam-github

@phillipj I've just started https://ci.nodejs.org/job/node-test-pull-request-lite-pipeline/4000/ for https://github.com/nodejs/node/pull/30007.

richardlau avatar Oct 17 '19 20:10 richardlau

Thanks!

The only thing that got logged was related to the linter job:

20:28:16.748Z  INFO bot: Jenkins / Github PR status updated (req_id=a5d07070-f11c-11e9-80b2-49db74176402, pr=30007, job=linter, gitRef=refs/pull/30007/head, status=pending)

Any easy way to know if anything has changed with the Lite-CI job lately, that could result in Jenkins not telling the github-bot about those jobs at all?

phillipj avatar Oct 17 '19 20:10 phillipj

So, twice today when going to ci.nodejs.org, I've been bounced to a github page saying that jenkins has been doing excessive auth requests, and do I really want to allow it. I just push the yes button, but I wonder, could this be happening to the API client?

sam-github avatar Oct 17 '19 21:10 sam-github

Yes, but it should be able to do 5000 requests/hr as described in API docs' rate limiting section which I naively assume should be more than enough.

Currently no new related errors has been logged since the above.

phillipj avatar Oct 17 '19 22:10 phillipj