зеркало из https://github.com/electron/electron.git
ci: add logging to uploading to GitHub releases (#41453)
This commit is contained in:
Родитель
b468b5e6e8
Коммит
267c0796dd
|
@ -27,7 +27,9 @@ const getHeaders = (filePath: string, fileName: string) => {
|
||||||
if (!extension) {
|
if (!extension) {
|
||||||
throw new Error(`Failed to get headers for extensionless file: ${fileName}`);
|
throw new Error(`Failed to get headers for extensionless file: ${fileName}`);
|
||||||
}
|
}
|
||||||
|
console.log(`About to get size of ${filePath}`);
|
||||||
const size = fs.statSync(filePath).size;
|
const size = fs.statSync(filePath).size;
|
||||||
|
console.log(`Got size of ${filePath}: ${size}`);
|
||||||
const options: Record<string, string> = {
|
const options: Record<string, string> = {
|
||||||
json: 'text/json',
|
json: 'text/json',
|
||||||
zip: 'application/zip',
|
zip: 'application/zip',
|
||||||
|
@ -46,10 +48,13 @@ const uploadUrl = `https://uploads.github.com/repos/electron/${targetRepo}/relea
|
||||||
let retry = 0;
|
let retry = 0;
|
||||||
|
|
||||||
function uploadToGitHub () {
|
function uploadToGitHub () {
|
||||||
|
console.log(`in uploadToGitHub for ${filePath}, ${fileName}`);
|
||||||
|
const fileData = fs.createReadStream(filePath);
|
||||||
|
console.log(`in uploadToGitHub, created readstream for ${filePath}`);
|
||||||
octokit.repos.uploadReleaseAsset({
|
octokit.repos.uploadReleaseAsset({
|
||||||
url: uploadUrl,
|
url: uploadUrl,
|
||||||
headers: getHeaders(filePath, fileName),
|
headers: getHeaders(filePath, fileName),
|
||||||
data: fs.createReadStream(filePath) as any,
|
data: fileData as any,
|
||||||
name: fileName,
|
name: fileName,
|
||||||
owner: 'electron',
|
owner: 'electron',
|
||||||
repo: targetRepo,
|
repo: targetRepo,
|
||||||
|
|
|
@ -362,10 +362,13 @@ def upload_io_to_github(release, filename, filepath, version):
|
||||||
(filename))
|
(filename))
|
||||||
script_path = os.path.join(
|
script_path = os.path.join(
|
||||||
ELECTRON_DIR, 'script', 'release', 'uploaders', 'upload-to-github.ts')
|
ELECTRON_DIR, 'script', 'release', 'uploaders', 'upload-to-github.ts')
|
||||||
upload_gh_output = execute([TS_NODE, script_path, filepath, filename,
|
upload_process = subprocess.Popen([TS_NODE, script_path, filepath, filename,
|
||||||
str(release['id']), version])
|
str(release['id']), version], stdout=subprocess.PIPE,
|
||||||
|
stderr=subprocess.STDOUT)
|
||||||
if is_verbose_mode():
|
if is_verbose_mode():
|
||||||
print(upload_gh_output)
|
for c in iter(lambda: upload_process.stdout.read(1), b""):
|
||||||
|
sys.stdout.buffer.write(c)
|
||||||
|
sys.stdout.flush()
|
||||||
|
|
||||||
|
|
||||||
def upload_sha256_checksum(version, file_path, key_prefix=None):
|
def upload_sha256_checksum(version, file_path, key_prefix=None):
|
||||||
|
|
Загрузка…
Ссылка в новой задаче