aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2018-07-31 12:14:40 +1000
committerteor <teor@torproject.org>2018-07-31 12:14:40 +1000
commitc3fca338a2c63241497b64a9f997c28f17ef1b6a (patch)
tree66c3b9febc719bb02a465fdd12fc9b3e3e004d7d /scripts
parentfcc848009311717dc23a739273501637ec7826fc (diff)
downloadtor-c3fca338a2c63241497b64a9f997c28f17ef1b6a.tar.gz
tor-c3fca338a2c63241497b64a9f997c28f17ef1b6a.zip
Appveyor CI: always use HEAD for the short commit
Part of 26979.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/test/appveyor-irc-notify.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/test/appveyor-irc-notify.py b/scripts/test/appveyor-irc-notify.py
index 639acc6ce6..cfe0afe7ae 100644
--- a/scripts/test/appveyor-irc-notify.py
+++ b/scripts/test/appveyor-irc-notify.py
@@ -118,10 +118,6 @@ def appveyor_vars():
]
])
- vars.update(
- short_commit=vars["repo_commit"][:10],
- )
-
BUILD_FMT = u'{url}/project/{account_name}/{project_name}/build/{build_version}'
if vars["repo_tag_name"]:
@@ -129,15 +125,20 @@ def appveyor_vars():
else:
BRANCH_FMT = u'{repo_name} {repo_branch} {short_commit}'
+ vars.update(head_commit=vars["repo_commit"])
+
if vars["repo_provider"].lower().startswith('github'):
COMMIT_FMT = u'https://github.com/{repo_name}/commit/{repo_commit}'
if vars["pull_request_number"]:
+ vars.update(head_commit=vars["pull_request_head_commit"])
BRANCH_FMT = u'{repo_name} {repo_branch} pull {pull_request_head_repo_name} {pull_request_head_repo_branch} {short_commit}'
COMMIT_FMT = u'https://github.com/{pull_request_head_repo_name}/commit/{pull_request_head_commit}'
PULL_FMT = u'https://github.com/{repo_name}/pull/{pull_request_number}'
vars.update(pull_url=PULL_FMT.format(**vars))
vars.update(commit_url=COMMIT_FMT.format(**vars))
+ vars.update(short_commit=vars["head_commit"][:10])
+
vars.update(
build_url=BUILD_FMT.format(**vars),
branch_detail=BRANCH_FMT.format(**vars),