aboutsummaryrefslogtreecommitdiff
path: root/utils/new-publish/propagate.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/new-publish/propagate.py')
-rwxr-xr-xutils/new-publish/propagate.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/new-publish/propagate.py b/utils/new-publish/propagate.py
index e279e37..349a7a7 100755
--- a/utils/new-publish/propagate.py
+++ b/utils/new-publish/propagate.py
@@ -54,20 +54,26 @@ if __name__ == "__main__":
dir_list = publib.make_dir_struct(file_list, REMOTE_UPLOAD_DIR, strip=strip)
print "Dirs:", dir_list
if not options.dry_run:
+ print "Creating dir structure on upload server"
publib.create_dir_struct(dir_list, remote_host, PUBLISH_USER_NAME,
options.identity_publish)
+ print "Done creating dir structure on upload server"
upload_script = publib.make_upload_script(file_list, REMOTE_UPLOAD_DIR, strip=strip)
+ print "Uploading files to upload server"
publib.upload_files(upload_script, remote_host, PUBLISH_USER_NAME,
options.identity_publish, options)
+ print "Done uploading files to upload server"
if options.step in ("all", "2"):
job, build = args[0].split("/")
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect(remote_host, username=TRIGGER_USER_NAME, key_filename=TRIGGER_KEY_FILE)
+ print "Triggering moving of files from upload to download area"
stdin, stdout, stderr = client.exec_command("reshuffle-files -t android -j %s -n %s -m %s" % (job, build, opt_staging))
stdin.close()
rc = stdout.channel.recv_exit_status()
+ print "Moving phase completed with result: %d" % rc
print "=== stdout ==="
print stdout.read()
print "=== stderr ==="