1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
#!/usr/bin/env python3
"""
Download GitHub release artifacts for Zen.
This script downloads Mac, Linux, and Windows artifacts from the GitHub release
corresponding to the current version in VERSION.txt and copies them to a specified
UE (p4) workspace directory.
Before copying the artifacts, it syncs (to head) the files contained in the downloaded
archives from Perforce and then opens them for editing and leaves them in the default
pending changelist.
"""
import argparse
import os
import sys
from pathlib import Path
import shutil
import subprocess
def read_version(repo_root, version_override=None):
"""Read the version from VERSION.txt or use the provided override."""
if version_override:
version = version_override
print(f"Version: {version} (from --version)")
else:
version_file = repo_root / "VERSION.txt"
if not version_file.exists():
print(f"Error: VERSION.txt not found at {version_file}", file=sys.stderr)
sys.exit(1)
version = version_file.read_text().strip()
print(f"Version: {version} (from VERSION.txt)")
return version
def download_artifact_gh(version, artifact_name, output_path, verbose=False):
"""Download a release artifact using gh CLI."""
print(f"Downloading {artifact_name}...")
print(f" To: {output_path}")
try:
# Build gh release download command
cmd = ['gh', 'release', 'download', f'v{version}', '--pattern', artifact_name]
if verbose:
print(f" Command: {' '.join(cmd)}")
# Create a temporary directory as a subdirectory of current working directory
# so gh can access the git repository context
temp_dir = Path.cwd() / '.temp_download'
temp_dir.mkdir(exist_ok=True)
try:
# Download to temp directory
result = subprocess.run(
cmd,
cwd=temp_dir,
capture_output=True,
text=True
)
if result.returncode != 0:
print(f" Error: gh release download failed", file=sys.stderr)
if result.stderr:
print(f" {result.stderr.strip()}", file=sys.stderr)
return False
# Move the downloaded file to the target location
downloaded_file = temp_dir / artifact_name
if not downloaded_file.exists():
print(f" Error: Downloaded file not found at {downloaded_file}", file=sys.stderr)
return False
shutil.move(str(downloaded_file), str(output_path))
file_size = output_path.stat().st_size
print(f" Downloaded successfully ({file_size:,} bytes)")
return True
finally:
# Clean up temp directory
if temp_dir.exists():
shutil.rmtree(temp_dir, ignore_errors=True)
except FileNotFoundError:
print(f" Error: 'gh' command not found. Please install GitHub CLI.", file=sys.stderr)
print(f" Visit: https://cli.github.com/", file=sys.stderr)
return False
except Exception as e:
print(f" Error: {e}", file=sys.stderr)
return False
def get_archive_files(zip_path):
"""Get list of files contained in the zip archive."""
import zipfile
try:
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
return [info.filename for info in zip_ref.filelist if not info.is_dir()]
except Exception as e:
print(f" Error reading archive: {e}", file=sys.stderr)
return []
def checkout_files_p4(target_dir, file_list, verbose=False):
"""Check out specific files from Perforce."""
if not file_list:
return True
print(f"Checking out files from Perforce...")
try:
# First sync files to latest revision
sync_cmd = ['p4', 'sync'] + file_list
if verbose:
print(f" Command: {' '.join(sync_cmd)}")
print(f" Working directory: {target_dir}")
sync_result = subprocess.run(
sync_cmd,
cwd=target_dir,
capture_output=True,
text=True
)
if sync_result.returncode == 0 or 'up-to-date' in sync_result.stdout:
if verbose and sync_result.stdout and sync_result.stdout.strip():
print(f" {sync_result.stdout.strip()}")
else:
# Sync might fail if files don't exist yet, which is okay
if sync_result.stderr and sync_result.stderr.strip():
print(f" Sync warning: {sync_result.stderr.strip()}")
# Now check out files using p4 edit
# Use relative paths and run from target_dir so p4 can infer P4CLIENT correctly
cmd = ['p4', 'edit'] + file_list
if verbose:
print(f" Command: {' '.join(cmd)}")
print(f" Working directory: {target_dir}")
result = subprocess.run(
cmd,
cwd=target_dir,
capture_output=True,
text=True
)
if result.returncode == 0 or 'opened for edit' in result.stdout:
# Count how many files were opened
output_lines = result.stdout.strip().split('\n') if result.stdout.strip() else []
file_count = len([line for line in output_lines if 'opened for edit' in line])
print(f" Checked out {file_count} file(s)")
return True
else:
# p4 edit might return non-zero if files don't exist yet or are already open
# This is often not a fatal error
if result.stdout and result.stdout.strip():
print(f" {result.stdout.strip()}")
if result.stderr and result.stderr.strip():
print(f" {result.stderr.strip()}")
return True # Continue anyway
except FileNotFoundError:
print(f" Warning: 'p4' command not found. Skipping Perforce checkout.", file=sys.stderr)
return True # Continue without P4
except Exception as e:
print(f" Warning: Error during P4 checkout: {e}", file=sys.stderr)
return True # Continue anyway
def revert_unchanged_files_p4(target_dir, file_list, verbose=False):
"""Revert files that have no content changes from the checked-in version."""
if not file_list:
return
print(f"Reverting unchanged files...")
try:
# Use p4 revert -a to revert unchanged files
# -a flag reverts files that are open for edit but have no content changes
revert_cmd = ['p4', 'revert', '-a'] + file_list
if verbose:
print(f" Command: {' '.join(revert_cmd)}")
print(f" Working directory: {target_dir}")
revert_result = subprocess.run(
revert_cmd,
cwd=target_dir,
capture_output=True,
text=True
)
if revert_result.returncode == 0:
# Count how many files were reverted
output_lines = revert_result.stdout.strip().split('\n') if revert_result.stdout.strip() else []
# p4 revert -a outputs lines like "file.txt - was edit, reverted"
reverted_count = len([line for line in output_lines if 'reverted' in line.lower()])
if reverted_count > 0:
print(f" Reverted {reverted_count} unchanged file(s)")
else:
print(f" No unchanged files to revert")
else:
if revert_result.stderr and revert_result.stderr.strip():
print(f" Revert warning: {revert_result.stderr.strip()}")
except FileNotFoundError:
# p4 not available, skip
pass
except Exception as e:
print(f" Warning: Error during P4 revert: {e}", file=sys.stderr)
def extract_artifact(zip_path, target_dir, artifact_name):
"""Extract a zip file to the target directory."""
import zipfile
print(f"Extracting {artifact_name}...")
print(f" To: {target_dir}")
try:
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
zip_ref.extractall(target_dir)
print(f" Extracted successfully")
return True
except Exception as e:
print(f" Error extracting: {e}", file=sys.stderr)
return False
def main():
parser = argparse.ArgumentParser(
description="Download Zen release artifacts from GitHub for the current version."
)
parser.add_argument(
"output_dir",
type=Path,
help="Directory where artifacts will be copied (should be the root of a UE p4 workspace)"
)
parser.add_argument(
"--version",
type=str,
help="Version to download (default: read from VERSION.txt)"
)
parser.add_argument(
"-v", "--verbose",
action="store_true",
help="Print command lines before executing external commands"
)
args = parser.parse_args()
# Determine repository root (for reading VERSION.txt if needed)
# Assume script is in scripts/ directory
script_dir = Path(__file__).resolve().parent
repo_root = script_dir.parent
# Read version (from --version option or VERSION.txt)
version = read_version(repo_root, args.version)
# Create output directory if it doesn't exist
output_dir = args.output_dir.resolve()
output_dir.mkdir(parents=True, exist_ok=True)
print(f"Output directory: {output_dir}\n")
# Define artifacts to download
artifacts = [
{
"name": "zenserver-win64.zip",
"platform": "Windows",
"target_subdir": "Engine/Binaries/Win64"
},
{
"name": "zenserver-macos.zip",
"platform": "macOS",
"target_subdir": "Engine/Binaries/Mac"
},
{
"name": "zenserver-linux.zip",
"platform": "Linux",
"target_subdir": "Engine/Binaries/Linux"
}
]
# Download each artifact
success_count = 0
failed_artifacts = []
for artifact in artifacts:
artifact_name = artifact["name"]
platform = artifact["platform"]
target_subdir = artifact["target_subdir"]
# Download to temporary location first
temp_path = output_dir / artifact_name
# Target extraction directory
target_dir = output_dir / target_subdir
target_dir.mkdir(parents=True, exist_ok=True)
# Download using gh CLI
print(f"[{platform}]")
if download_artifact_gh(version, artifact_name, temp_path, args.verbose):
# Get list of files in the archive
archive_files = get_archive_files(temp_path)
# Check out only those specific files from P4 before extracting
if archive_files:
checkout_files_p4(target_dir, archive_files, args.verbose)
# Extract to platform-specific directory
if extract_artifact(temp_path, target_dir, artifact_name):
# Revert any files that didn't actually change
if archive_files:
revert_unchanged_files_p4(target_dir, archive_files, args.verbose)
# Remove temporary zip file
temp_path.unlink()
success_count += 1
else:
failed_artifacts.append(f"{platform} ({artifact_name})")
else:
failed_artifacts.append(f"{platform} ({artifact_name})")
print()
# Summary
print("=" * 60)
print(f"Download Summary:")
print(f" Successful: {success_count}/{len(artifacts)}")
if failed_artifacts:
print(f" Failed:")
for artifact in failed_artifacts:
print(f" - {artifact}")
sys.exit(1)
else:
print(f" All artifacts downloaded successfully!")
print(f" Location: {output_dir}")
if __name__ == "__main__":
main()
|