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

Side by Side Diff: scripts/slave/recipes/chromium_gn.expected/full_client_v8_V8_Linux_GN.json

Issue 1084793005: Flip remaining GN bots to use MB. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix lint warning Created 5 years, 8 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.v8", 8 "client.v8",
9 "--builder", 9 "--builder",
10 "V8 Linux GN", 10 "V8 Linux GN",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 ], 68 ],
69 "env": { 69 "env": {
70 "GYP_CHROMIUM_NO_ACTION": "1" 70 "GYP_CHROMIUM_NO_ACTION": "1"
71 }, 71 },
72 "name": "gclient runhooks" 72 "name": "gclient runhooks"
73 }, 73 },
74 { 74 {
75 "cmd": [ 75 "cmd": [
76 "python", 76 "python",
77 "-u", 77 "-u",
78 "[DEPOT_TOOLS]/gn.py", 78 "[SLAVE_BUILD]/src/tools/mb/mb.py",
79 "--root=[SLAVE_BUILD]/src",
80 "gen", 79 "gen",
81 "//out/Release", 80 "-v",
82 "--args=is_debug=false target_cpu=\"x64\" use_goma=true goma_dir=\"[BUILD] /goma\"" 81 "-m",
82 "client.v8",
83 "-b",
84 "V8 Linux GN",
85 "--goma-dir",
86 "[BUILD]/goma",
87 "//out/Release"
83 ], 88 ],
84 "name": "gn" 89 "name": "mb gen"
85 }, 90 },
86 { 91 {
87 "cmd": [ 92 "cmd": [
93 "python",
94 "-u",
95 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
96 "[SLAVE_BUILD]/src/testing/buildbot/client.v8.json",
97 "/path/to/tmp/json"
98 ],
99 "name": "read test spec",
100 "~followup_annotations": [
101 "@@@STEP_TEXT@path: [SLAVE_BUILD]/src/testing/buildbot/client.v8.json@@@",
102 "@@@STEP_LOG_LINE@json.output@{@@@",
103 "@@@STEP_LOG_LINE@json.output@ \"V8 Linux GN\": {@@@",
104 "@@@STEP_LOG_LINE@json.output@ \"gtest_tests\": [@@@",
105 "@@@STEP_LOG_LINE@json.output@ \"base_unittests\"@@@",
106 "@@@STEP_LOG_LINE@json.output@ ]@@@",
107 "@@@STEP_LOG_LINE@json.output@ }@@@",
108 "@@@STEP_LOG_LINE@json.output@}@@@",
109 "@@@STEP_LOG_END@json.output@@@"
110 ]
111 },
112 {
113 "cmd": [
88 "python", 114 "python",
89 "-u", 115 "-u",
90 "[BUILD]/scripts/slave/compile.py", 116 "[BUILD]/scripts/slave/compile.py",
91 "--target", 117 "--target",
92 "Release", 118 "Release",
93 "--src-dir", 119 "--src-dir",
94 "[SLAVE_BUILD]/src", 120 "[SLAVE_BUILD]/src",
95 "--build-tool", 121 "--build-tool",
96 "ninja", 122 "ninja",
97 "--compiler", 123 "--compiler",
98 "goma", 124 "goma",
99 "--goma-dir", 125 "--goma-dir",
100 "[BUILD]/goma", 126 "[BUILD]/goma",
101 "--", 127 "--",
128 "base_unittests",
102 "all" 129 "all"
103 ], 130 ],
104 "name": "compile" 131 "name": "compile"
105 }, 132 },
106 { 133 {
107 "cmd": [ 134 "cmd": [
108 "python", 135 "python",
109 "-u", 136 "-u",
110 "[DEPOT_TOOLS]/gn.py", 137 "[DEPOT_TOOLS]/gn.py",
111 "--root=[SLAVE_BUILD]/src", 138 "--root=[SLAVE_BUILD]/src",
112 "check", 139 "check",
113 "//out/Release" 140 "//out/Release"
114 ], 141 ],
115 "name": "gn check" 142 "name": "gn check"
116 },
117 {
118 "cmd": [
119 "python",
120 "-u",
121 "[BUILD]/scripts/slave/runtest.py",
122 "--target",
123 "Release",
124 "--no-xvfb",
125 "--factory-properties",
126 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \" buildername\": \"V8 Linux GN\", \"buildnumber\": 571, \"mastername\": \"client.v 8\", \"recipe\": \"chromium_gn\", \"slavename\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}",
127 "--build-properties",
128 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \" buildername\": \"V8 Linux GN\", \"buildnumber\": 571, \"mastername\": \"client.v 8\", \"recipe\": \"chromium_gn\", \"slavename\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}",
129 "--builder-name=V8 Linux GN",
130 "--slave-name=TestSlavename",
131 "--build-number=571",
132 "gn_unittests"
133 ],
134 "name": "gn_unittests"
135 } 143 }
136 ] 144 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698