1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00
gh-buildozer-action/.ci/move_binary.py

122 lines
3.5 KiB
Python
Raw Normal View History

#!/bin/python3
import os
import shutil
import subprocess
2020-07-29 15:19:30 +02:00
import sys
from os import environ as env
binary_filename = os.path.abspath(sys.argv[1])
master_repository_directory = os.path.abspath(sys.argv[2])
2020-07-21 22:20:32 +02:00
data_repository = sys.argv[3]
data_repository_directory = os.path.abspath(data_repository)
directory = sys.argv[4]
os.chdir(master_repository_directory)
filename = os.path.basename(binary_filename)
2020-12-24 18:34:55 +01:00
# Include commit subject and hash to the new commit
2020-07-29 15:19:30 +02:00
commit_hash = (
subprocess.check_output(["git", "rev-parse", "--verify", "--short", "HEAD"])
.decode("utf-8")
.strip()
)
commit_subject = (
subprocess.check_output(["git", "log", "-1", "--pretty=format:%s"])
.decode("utf-8")
.strip()
)
2020-07-29 15:19:30 +02:00
is_tag = env["GITHUB_EVENT_NAME"] == "push" and env["GITHUB_REF"].startswith(
"refs/tags"
)
2020-12-24 18:34:55 +01:00
is_pr = env["GITHUB_REF"].startswith("refs/pull")
2020-12-24 18:34:55 +01:00
filename_split = filename.split("-")
if is_tag:
new_commit_message = (
f'Add binary for {filename_split[1]} {commit_hash}: "{commit_subject}"'
)
elif is_pr:
# Pull Request - prN (pr1)
pr_number = env["GITHUB_REF"].split("/")[2]
filename = "-".join(
[*filename_split[:2], f"pr{pr_number}", *filename_split[2:]]
)
directory = os.path.join(directory, "prs")
new_commit_message = (
f'Add binary for #{pr_number} {commit_hash}: "{commit_subject}"'
)
else:
# Latest commit - short hash (20f2448)
filename = "-".join([*filename_split[:2], commit_hash, *filename_split[2:]])
new_commit_message = f'Add binary for {commit_hash}: "{commit_subject}"'
2020-12-24 18:55:11 +01:00
# Set author info to the latest commit author
author_name = subprocess.check_output(
["git", "log", "-1", "--pretty=format:%an"]
).decode("utf-8")
author_email = subprocess.check_output(
["git", "log", "-1", "--pretty=format:%ae"]
).decode("utf-8")
2020-12-24 18:34:55 +01:00
# Prepare for pushing
os.chdir(data_repository_directory)
os.makedirs(directory, exist_ok=True)
subprocess.check_call(["git", "config", "user.name", author_name])
subprocess.check_call(["git", "config", "user.email", author_email])
2020-12-24 18:55:11 +01:00
# Ensure that there are no changes
2020-12-24 20:39:08 +01:00
subprocess.check_call(
[
"git",
"pull",
"origin",
data_repository,
"--ff-only",
"--allow-unrelated-histories",
]
)
2020-12-24 18:34:55 +01:00
# Try to push several times
for i in range(3):
shutil.copy(binary_filename, os.path.join(directory, filename))
# Push changes
subprocess.check_call(["git", "add", os.path.join(directory, filename)])
subprocess.check_call(
["git", "commit", "--amend", "-m", new_commit_message]
)
try:
subprocess.check_call(
["git", "push", "origin", data_repository, "--force"]
)
except subprocess.CalledProcessError: # There are changes in repository
# Undo local changes
subprocess.check_call(
["git", "reset", f"origin/{data_repository}", "--hard"]
)
# Pull new changes
subprocess.check_call(
2020-12-24 20:39:08 +01:00
[
"git",
"pull",
"origin",
data_repository,
"--force",
"--ff-only",
"--allow-unrelated-histories",
]
2020-12-24 18:34:55 +01:00
)
else:
break # Exit loop if there is no errors
else:
raise Exception("Cannot push binary")
2020-07-21 22:20:32 +02:00
2020-12-24 18:34:55 +01:00
new_commit_hash = (
subprocess.check_output(["git", "rev-parse", "--verify", "--short", "HEAD"])
.decode("utf-8")
.strip()
)
2020-07-29 15:19:30 +02:00
print(
2020-12-24 18:34:55 +01:00
f"Binary file: {env['GITHUB_SERVER_URL']}/{env['GITHUB_REPOSITORY']}/blob/"
f"{new_commit_hash}/{directory}/{filename}"
2020-07-29 15:19:30 +02:00
)