-
-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
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
notify maintainers on evaluation errors #376
Comments
Yes that would be nice. Is there a github action for that? |
i guess this belongs in nur/update.py logger.info(f"Evaluate repository {repo.name}")
proc = subprocess.Popen(
cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.DEVNULL
)
try:
res = proc.wait(10)
except subprocess.TimeoutExpired:
raise EvalError(f"evaluation for {repo.name} timed out of after 10 seconds")
if res != 0:
raise EvalError(f"{repo.name} does not evaluate:\n$ {' '.join(cmd)}") so we need:
concept: #!/usr/bin/env python3
# https://github.com/nix-community/NUR/blob/master/nur/update.py
import subprocess
import os
from github import Github # https://github.com/PyGithub/PyGithub
bot_name = "nur-bot" # https://github.com/nur-bot
bot_token = os.environ["GITHUB_BOT_TOKEN"] # access token
# TODO set token in github config
eval_timeout = 10 # seconds
github = Github(bot_token)
# TODO loop values from repos.json
# sample: https://github.com/milahu/nur-packages
repo_owner = "milahu"
repo_name = "nur-packages"
repo_version = "TODO"
cmd = [
"bash",
"test.sh"
]
proc = subprocess.Popen(
cmd, env=dict(PATH=os.environ["PATH"]),
stdout=subprocess.PIPE, stderr=subprocess.STDOUT
)
timeout = False
nonzero = False
try:
proc.wait(eval_timeout)
except subprocess.TimeoutExpired:
timeout = True
if proc.returncode != 0:
nonzero = True
if timeout or nonzero:
output = proc.stdout.read().decode() # stdout and stderr are interleaved
# send output to logfile
print(output)
# notify maintainer
# TODO check if maintainer wants to receive notifications -> repos.json
# check if we already sent a notification for this error
repo = github.get_repo(f"{repo_owner}/{repo_name}")
last_issue = repo.get_issues(creator=bot_name, sort="newest")[0]
issue_title = f"evaluation failed for version {repo_version}"
if issue_title != last_issue.title:
# we have not yet notified the maintainer of this error
# create a new issue on the maintainer's repo
issue_body = f"evaluation failed.\n\ntimeout: {"yes" if timeout else "no"}\nreturn code: {proc.returncode}\n\noutput:\n\n```\n" + output.strip() + "\n```\n"
repo.create_issue(title=issue_title, body=issue_body)
# TODO handle "no issue tracker"
if timeout:
raise EvalError(f"evaluation for {{repo.name}} timed out of after {eval_timeout} seconds")
if nonzero:
raise EvalError(f"{{repo.name}} does not evaluate:\n$ {' '.join(cmd)}") |
Btw. you can also check evaluation in your own repo using: https://github.com/nix-community/nur-packages-template/blob/cc8c7823f2280d6216c521efb3814312eeae483e/.github/workflows/build.yml#L57 |
yepp:
edit: |
it would be nice to have a push mechanism,
to notify maintainers on evaluation errors
since the evaluation is done many times per day,
only the first error should be reported
the readme says
for example, the build job says
expected result:
a bot should create an issue on my tracker
https://github.com/milahu/nur-packages/issues
tags: notification, debug
The text was updated successfully, but these errors were encountered: