Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4269)

Unified Diff: client/example/2_swarming_run.py

Issue 1337633002: Reapply "Isolated task support in Endpoints API: client side (3/3)" and fixes" (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Final fixes Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/local_smoke_test.py ('k') | client/example/2_swarming_run_auto_upload.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/example/2_swarming_run.py
diff --git a/client/example/2_swarming_run_auto_upload.py b/client/example/2_swarming_run.py
similarity index 69%
rename from client/example/2_swarming_run_auto_upload.py
rename to client/example/2_swarming_run.py
index 2fb5d43c5f41dea3b574bebb6b0e75991c09accb..3a7e643316f30d28b5c27348c82f043d55e095d0 100755
--- a/client/example/2_swarming_run_auto_upload.py
+++ b/client/example/2_swarming_run.py
@@ -4,10 +4,12 @@
# can be found in the LICENSE file.
"""Runs hello_world.py, through hello_world.isolate, remotely on a Swarming
-slave.
+bot.
It first 'compiles' hello_world.isolate into hello_word.isolated, then requests
via swarming.py to archives, run and collect results for this task.
+
+It generates example_result.json as a task summary.
"""
import os
@@ -25,25 +27,8 @@ def main():
options = common.parse_args(use_isolate_server=True, use_swarming=True)
tempdir = tempfile.mkdtemp(prefix=u'hello_world')
try:
- # All the files are put in a temporary directory. This is optional and
- # simply done so the current directory doesn't have the following files
- # created:
- # - hello_world.isolated
- # - hello_world.isolated.state
- isolated = os.path.join(tempdir, 'hello_world.isolated')
-
- common.note(
- 'Creating hello_world.isolated. Note that this doesn\'t archives '
- 'anything.')
- common.run(
- [
- 'isolate.py',
- 'check',
- '--isolate', os.path.join('payload', 'hello_world.isolate'),
- '--isolated', isolated,
- '--config-variable', 'OS', options.swarming_os,
- ], options.verbose)
-
+ isolated, _ = common.isolate(
+ tempdir, options.isolate_server, options.swarming_os, options.verbose)
common.note(
'Running the job remotely. This:\n'
' - archives to %s\n'
@@ -56,6 +41,8 @@ def main():
'--isolate-server', options.isolate_server,
'--dimension', 'os', options.swarming_os,
'--task-name', options.task_name,
+ '--task-summary-json', 'example_result.json',
+ '--decorate',
isolated,
]
if options.idempotent:
@@ -63,6 +50,9 @@ def main():
if options.priority is not None:
cmd.extend(('--priority', str(options.priority)))
common.run(cmd, options.verbose)
+ with open('example_result.json', 'rb') as f:
+ print('example_result.json content:')
+ print(f.read())
return 0
except subprocess.CalledProcessError as e:
return e.returncode
« no previous file with comments | « appengine/swarming/local_smoke_test.py ('k') | client/example/2_swarming_run_auto_upload.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698