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

Side by Side Diff: scripts/slave/recipes/boringssl.expected/linux_shared.json

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/bot_update.py", 6 "[BUILD]/scripts/slave/bot_update.py",
7 "--master", 7 "--master",
8 "client.boringssl", 8 "client.boringssl",
9 "--builder", 9 "--builder",
10 "linux_shared", 10 "linux_shared",
11 "--slave", 11 "--slave",
12 "slavename", 12 "slavename",
13 "--spec", 13 "--spec",
14 "cache_dir = None\nsolutions = [{'deps_file': 'util/bot/DEPS', 'managed': True, 'name': 'boringssl', 'url': 'https://boringssl.googlesource.com/boringssl. git'}]", 14 "cache_dir = None\nsolutions = [{'deps_file': 'util/bot/DEPS', 'managed': True, 'name': 'boringssl', 'url': 'https://boringssl.googlesource.com/boringssl. git'}]",
15 "--root", 15 "--root",
16 "boringssl", 16 "boringssl",
17 "--revision_mapping_file", 17 "--revision_mapping_file",
18 "{}", 18 "{}",
19 "--output_json", 19 "--output_json",
20 "/path/to/tmp/json", 20 "/path/to/tmp/json",
21 "--revision", 21 "--revision",
22 "boringssl@HEAD", 22 "boringssl@HEAD",
23 "--force" 23 "--force"
24 ], 24 ],
25 "cwd": "[SLAVE_BUILD]",
25 "name": "bot_update", 26 "name": "bot_update",
26 "~followup_annotations": [ 27 "~followup_annotations": [
27 "@@@STEP_TEXT@Some step text@@@", 28 "@@@STEP_TEXT@Some step text@@@",
28 "@@@STEP_LOG_LINE@json.output@{@@@", 29 "@@@STEP_LOG_LINE@json.output@{@@@",
29 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", 30 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
30 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", 31 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
31 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"boringssl\", @@@", 32 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"boringssl\", @@@",
32 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", 33 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@",
33 "@@@STEP_LOG_LINE@json.output@ \"root\": \"boringssl\", @@@", 34 "@@@STEP_LOG_LINE@json.output@ \"root\": \"boringssl\", @@@",
34 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", 35 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
35 "@@@STEP_LOG_LINE@json.output@}@@@", 36 "@@@STEP_LOG_LINE@json.output@}@@@",
36 "@@@STEP_LOG_END@json.output@@@" 37 "@@@STEP_LOG_END@json.output@@@"
37 ] 38 ]
38 }, 39 },
39 { 40 {
40 "cmd": [ 41 "cmd": [
41 "python", 42 "python",
42 "-u", 43 "-u",
43 "[DEPOT_TOOLS]/gclient.py", 44 "[DEPOT_TOOLS]/gclient.py",
44 "runhooks" 45 "runhooks"
45 ], 46 ],
47 "cwd": "[SLAVE_BUILD]",
46 "name": "gclient runhooks" 48 "name": "gclient runhooks"
47 }, 49 },
48 { 50 {
49 "cmd": [ 51 "cmd": [
50 "python", 52 "python",
51 "-u", 53 "-u",
52 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 54 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
53 "[SLAVE_BUILD]/boringssl/build", 55 "[SLAVE_BUILD]/boringssl/build",
54 "511" 56 "511"
55 ], 57 ],
58 "cwd": "[SLAVE_BUILD]",
56 "name": "makedirs mkdir", 59 "name": "makedirs mkdir",
57 "~followup_annotations": [ 60 "~followup_annotations": [
58 "@@@STEP_LOG_LINE@python.inline@@@@", 61 "@@@STEP_LOG_LINE@python.inline@@@@",
59 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 62 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
60 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", 63 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
61 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", 64 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
62 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", 65 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
63 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", 66 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
64 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 67 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
65 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 68 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
(...skipping 16 matching lines...) Expand all
82 }, 85 },
83 { 86 {
84 "cmd": [ 87 "cmd": [
85 "python", 88 "python",
86 "-u", 89 "-u",
87 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py", 90 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py",
88 "ninja", 91 "ninja",
89 "-C", 92 "-C",
90 "[SLAVE_BUILD]/boringssl/build" 93 "[SLAVE_BUILD]/boringssl/build"
91 ], 94 ],
95 "cwd": "[SLAVE_BUILD]",
92 "name": "ninja" 96 "name": "ninja"
93 }, 97 },
94 { 98 {
95 "cmd": [ 99 "cmd": [
96 "python", 100 "python",
97 "-u", 101 "-u",
98 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py", 102 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py",
99 "go", 103 "go",
100 "run", 104 "run",
101 "util/all_tests.go", 105 "util/all_tests.go",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 "@@@STEP_LOG_LINE@test_utils.test_results@ \"actual\": \"PASS\", @@ @", 210 "@@@STEP_LOG_LINE@test_utils.test_results@ \"actual\": \"PASS\", @@ @",
207 "@@@STEP_LOG_LINE@test_utils.test_results@ \"expected\": \"PASS\"@@ @", 211 "@@@STEP_LOG_LINE@test_utils.test_results@ \"expected\": \"PASS\"@@ @",
208 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@", 212 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@",
209 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@", 213 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@",
210 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@", 214 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@",
211 "@@@STEP_LOG_LINE@test_utils.test_results@}@@@", 215 "@@@STEP_LOG_LINE@test_utils.test_results@}@@@",
212 "@@@STEP_LOG_END@test_utils.test_results@@@" 216 "@@@STEP_LOG_END@test_utils.test_results@@@"
213 ] 217 ]
214 } 218 }
215 ] 219 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/boringssl.expected/linux_noasm_asan.json ('k') | scripts/slave/recipes/boringssl.expected/mac.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698