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

Side by Side Diff: scripts/slave/recipe_modules/archive/example.expected/cf_archiving_svn_no_git.json

Issue 2394163006: Reland: Make clusterfuzz_archive include llvm-symbolizer and sancov. (Closed)
Patch Set: fix Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
7 "None/third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer",
8 "[SLAVE_BUILD]/src/out/Release/llvm-symbolizer"
9 ],
10 "name": "Copy llvm-symbolizer"
11 },
12 {
13 "cmd": [
14 "python",
15 "-u",
16 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
17 "None/third_party/llvm-build/Release+Asserts/bin/sancov",
18 "[SLAVE_BUILD]/src/out/Release/sancov"
19 ],
20 "name": "Copy sancov"
21 },
22 {
23 "cmd": [
24 "python",
25 "-u",
6 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir( sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys .argv[1]), f)\n", 26 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir( sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys .argv[1]), f)\n",
7 "[SLAVE_BUILD]/src/out/Release", 27 "[SLAVE_BUILD]/src/out/Release",
8 "/path/to/tmp/json" 28 "/path/to/tmp/json"
9 ], 29 ],
10 "name": "listdir build_dir", 30 "name": "listdir build_dir",
11 "~followup_annotations": [ 31 "~followup_annotations": [
12 "@@@STEP_LOG_LINE@json.output@[@@@", 32 "@@@STEP_LOG_LINE@json.output@[@@@",
13 "@@@STEP_LOG_LINE@json.output@ \"chrome\"@@@", 33 "@@@STEP_LOG_LINE@json.output@ \"chrome\"@@@",
14 "@@@STEP_LOG_LINE@json.output@]@@@", 34 "@@@STEP_LOG_LINE@json.output@]@@@",
15 "@@@STEP_LOG_END@json.output@@@", 35 "@@@STEP_LOG_END@json.output@@@",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@", 87 "@@@STEP_LOG_LINE@python.inline@os.remove(sys.argv[1])@@@",
68 "@@@STEP_LOG_END@python.inline@@@" 88 "@@@STEP_LOG_END@python.inline@@@"
69 ] 89 ]
70 }, 90 },
71 { 91 {
72 "name": "$result", 92 "name": "$result",
73 "recipe_result": null, 93 "recipe_result": null,
74 "status_code": 0 94 "status_code": 0
75 } 95 }
76 ] 96 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698