mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
Avoid some issues where 'HEAD' ends up in the built list
This commit is contained in:
parent
5081ad69f8
commit
c2c0fb832d
1 changed files with 11 additions and 4 deletions
|
@ -163,18 +163,25 @@ for app, info in apps_list.items():
|
||||||
previous_maintained = already_built_file.get(app, {}).get("maintained")
|
previous_maintained = already_built_file.get(app, {}).get("maintained")
|
||||||
|
|
||||||
if github_repo and app_rev == "HEAD":
|
if github_repo and app_rev == "HEAD":
|
||||||
|
|
||||||
if previous_rev is None:
|
if previous_rev is None:
|
||||||
previous_rev = 'HEAD'
|
previous_rev = 'HEAD'
|
||||||
|
|
||||||
owner = github_repo.group('owner')
|
owner = github_repo.group('owner')
|
||||||
repo = github_repo.group('repo')
|
repo = github_repo.group('repo')
|
||||||
|
|
||||||
|
url = "https://api.github.com/repos/{}/{}/git/refs/heads/{}".format(owner, repo, app_branch)
|
||||||
|
head = get_json(url)
|
||||||
|
app_rev = head["object"]["sha"]
|
||||||
|
|
||||||
url = "https://api.github.com/repos/{}/{}/compare/{}...{}".format(owner, repo, previous_rev, app_branch)
|
url = "https://api.github.com/repos/{}/{}/compare/{}...{}".format(owner, repo, previous_rev, app_branch)
|
||||||
diff = get_json(url)
|
diff = get_json(url)
|
||||||
|
|
||||||
if not diff["commits"]:
|
if not diff["commits"]:
|
||||||
app_rev = previous_rev
|
app_rev = previous_rev if previous_rev != 'HEAD' else app_rev
|
||||||
else:
|
else:
|
||||||
# If only those files got updated, we won't want to update the
|
# Only if those files got updated, do we want to update the
|
||||||
# commit because that would trigger an unecessary upgrade
|
# commit (otherwise that would trigger an unecessary upgrade)
|
||||||
ignore_files = [ "README.md", "LICENSE", ".gitignore", "check_process", ".travis.yml" ]
|
ignore_files = [ "README.md", "LICENSE", ".gitignore", "check_process", ".travis.yml" ]
|
||||||
diff_files = [ f for f in diff["files"] if f["filename"] not in ignore_files ]
|
diff_files = [ f for f in diff["files"] if f["filename"] not in ignore_files ]
|
||||||
|
|
||||||
|
@ -183,7 +190,7 @@ for app, info in apps_list.items():
|
||||||
app_rev = diff["commits"][-1]["sha"]
|
app_rev = diff["commits"][-1]["sha"]
|
||||||
else:
|
else:
|
||||||
print("This app points to HEAD but no significant changes where found compared to HEAD, so keeping the previous commit")
|
print("This app points to HEAD but no significant changes where found compared to HEAD, so keeping the previous commit")
|
||||||
app_rev = previous_rev
|
app_rev = previous_rev if previous_rev != 'HEAD' else app_rev
|
||||||
|
|
||||||
print("Previous commit : %s" % previous_rev)
|
print("Previous commit : %s" % previous_rev)
|
||||||
print("Current commit : %s" % app_rev)
|
print("Current commit : %s" % app_rev)
|
||||||
|
|
Loading…
Add table
Reference in a new issue